OSDN Git Service

binioパッケージと統合
[mikutoga/TogaGem.git] / src / main / java / jp / sourceforge / mikutoga / pmd / model / binio / IllegalPmdException.java
1 /*
2  * illegal model exception
3  *
4  * License : The MIT License
5  * Copyright(c) 2010 MikuToga Partners
6  */
7
8 package jp.sourceforge.mikutoga.pmd.model.binio;
9
10 /**
11  * モデルデータの不備を発見した場合の例外。
12  */
13 @SuppressWarnings("serial")
14 public class IllegalPmdException extends Exception{
15
16     /**
17      * コンストラクタ。
18      */
19     public IllegalPmdException(){
20         super();
21         return;
22     }
23
24     /**
25      * コンストラクタ。
26      * @param message メッセージ
27      */
28     public IllegalPmdException(String message){
29         super(message);
30         return;
31     }
32
33     /**
34      * コンストラクタ。
35      * @param cause 原因
36      */
37     public IllegalPmdException(Throwable cause){
38         super(cause);
39         return;
40     }
41
42 }