OSDN Git Service

130128版スキーマ対応
[mikutoga/Pmd2XML.git] / src / main / java / jp / sfjp / mikutoga / pmd2xml / CmdLineException.java
1 /*
2  * command line exception
3  *
4  * License : The MIT License
5  * Copyright(c) 2013 MikuToga Partners
6  */
7
8 package jp.sfjp.mikutoga.pmd2xml;
9
10 /**
11  * コマンドライン引数の不備による異常系。
12  */
13 @SuppressWarnings("serial")
14 class CmdLineException extends Exception{
15
16     /**
17      * コンストラクタ。
18      * @param message {@inheritDoc}
19      */
20     public CmdLineException(String message) {
21         super(message);
22         return;
23     }
24
25 }