OSDN Git Service

javadocプラグイン更新
[jindolf/Jindolf.git] / src / main / java / jp / sourceforge / jindolf / json / JsVisitException.java
1 /*
2  * JSON traverse error exception
3  *
4  * License : The MIT License
5  * Copyright(c) 2009 olyutorskii
6  */
7
8 package jp.sourceforge.jindolf.json;
9
10 /**
11  * トラバース中断例外。
12  */
13 @SuppressWarnings("serial")
14 public class JsVisitException extends Exception{
15
16     /**
17      * コンストラクタ。
18      */
19     public JsVisitException(){
20         super();
21         return;
22     }
23
24     /**
25      * コンストラクタ。
26      * @param th 原因となった例外
27      */
28     public JsVisitException(Throwable th){
29         super(th);
30         return;
31     }
32
33 }