OSDN Git Service

binioパッケージと統合
[mikutoga/TogaGem.git] / src / main / java / jp / sourceforge / mikutoga / pmd / model / binio / IllegalPmdTextException.java
1 /*
2  * illegal text in 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  * <p>
13  * 考えられる理由としては
14  * <ul>
15  * <li>用意されたフォーマットに対し文字列が長すぎる。
16  * <li>文字エンコーディングできない文字が含まれている
17  * <li>ユニコード文字列として既に変。
18  * </ul>
19  * など。
20  */
21 @SuppressWarnings("serial")
22 public class IllegalPmdTextException extends IllegalPmdException{
23
24     /**
25      * コンストラクタ。
26      */
27     public IllegalPmdTextException(){
28         super();
29         return;
30     }
31
32     /**
33      * コンストラクタ。
34      * @param message メッセージ
35      */
36     public IllegalPmdTextException(String message){
37         super(message);
38         return;
39     }
40
41 }