OSDN Git Service

9716ced1cef2b243fba45270c89525e4eeba75e3
[jindolf/Jindolf.git] / src / main / java / jp / sourceforge / jindolf / json / JsParseException.java
1 /*
2  * JSON parse error information
3  *
4  * License : The MIT License
5  * Copyright(c) 2009 olyutorskii
6  */
7
8 package jp.sourceforge.jindolf.json;
9
10 /**
11  * JSON パースの異常系情報。
12  */
13 @SuppressWarnings("serial")
14 public class JsParseException extends Exception{
15
16     /**
17      * コンストラクタ。
18      */
19     public JsParseException(){
20         super();
21         return;
22     }
23
24     /**
25      * コンストラクタ。
26      * @param th 原因となった例外
27      */
28     public JsParseException(Throwable th){
29         super(th);
30         return;
31     }
32
33 }