OSDN Git Service

パッケージ移動
[mikutoga/TogaGem.git] / src / main / java / jp / sfjp / mikutoga / vmd / IllegalVmdDataException.java
1 /*
2  * illegal VMD motion data exception
3  *
4  * License : The MIT License
5  * Copyright(c) 2011 MikuToga Partners
6  */
7
8 package jp.sfjp.mikutoga.vmd;
9
10 /**
11  * VMDモーションデータの不備を発見した場合の例外。
12  */
13 @SuppressWarnings("serial")
14 public class IllegalVmdDataException extends Exception{
15
16     /**
17      * コンストラクタ。
18      */
19     public IllegalVmdDataException(){
20         super();
21         return;
22     }
23
24     /**
25      * コンストラクタ。
26      * @param message 詳細メッセージ
27      */
28     public IllegalVmdDataException(String message){
29         super(message);
30         return;
31     }
32
33     /**
34      * コンストラクタ。
35      * @param cause 原因
36      */
37     public IllegalVmdDataException(Throwable cause){
38         super(cause);
39         return;
40     }
41
42     /**
43      * コンストラクタ。
44      * @param message 詳細メッセージ
45      * @param cause 原因
46      */
47     public IllegalVmdDataException(String message, Throwable cause){
48         super(message, cause);
49         return;
50     }
51
52 }