OSDN Git Service

srcディレクトリとdocディレクトリを作成
[xdf/git-repos.git] / src / xdf / src / main / java / jp / ac / aiit / xdf / core / exceptions / UnexpectedBehaviorException.java
1 package jp.ac.aiit.xdf.core.exceptions;
2
3 /**
4  * フレームワーク内部において予期しない挙動を示したときに発生させる例外
5  * 
6  * @author Shunichi Takagi
7  *
8  */
9 public class UnexpectedBehaviorException extends RuntimeException {
10         private static final long serialVersionUID = 4014636513715006927L;
11
12         public UnexpectedBehaviorException() {
13                 super();
14         }
15
16         public UnexpectedBehaviorException(String message, Throwable cause) {
17                 super(message, cause);
18         }
19
20         public UnexpectedBehaviorException(String message) {
21                 super(message);
22         }
23
24         public UnexpectedBehaviorException(Throwable cause) {
25                 super(cause);
26         }
27
28 }