forked from stleary/JSON-java
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONException.java
More file actions
Latest commit
executable file
·28 lines (24 loc) · 700 Bytes
/
Copy pathJSONException.java
File metadata and controls
executable file
·28 lines (24 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
packageorg.json;
/**
* The JSONException is thrown by the JSON.org classes when things are amiss.
* @author JSON.org
* @version 2010-12-24
*/
publicclassJSONExceptionextendsException {
privatestaticfinallongserialVersionUID = 0;
privateThrowablecause;
/**
* Constructs a JSONException with an explanatory message.
* @param message Detail about the reason for the exception.
*/
publicJSONException(Stringmessage) {
super(message);
}
publicJSONException(Throwablecause) {
super(cause.getMessage());
this.cause = cause;
}
publicThrowablegetCause() {
returnthis.cause;
}
}