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
·43 lines (39 loc) · 1.04 KB
/
Copy pathJSONException.java
File metadata and controls
executable file
·43 lines (39 loc) · 1.04 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
packageorg.json;
/**
* The JSONException is thrown by the JSON.org classes when things are amiss.
*
* @author JSON.org
* @version 2014-05-03
*/
publicclassJSONExceptionextendsRuntimeException {
privatestaticfinallongserialVersionUID = 0;
privateThrowablecause;
/**
* Constructs a JSONException with an explanatory message.
*
* @param message
* Detail about the reason for the exception.
*/
publicJSONException(Stringmessage) {
super(message);
}
/**
* Constructs a new JSONException with the specified cause.
* @param cause The cause.
*/
publicJSONException(Throwablecause) {
super(cause.getMessage());
this.cause = cause;
}
/**
* Returns the cause of this exception or null if the cause is nonexistent
* or unknown.
*
* @return the cause of this exception or null if the cause is nonexistent
* or unknown.
*/
@Override
publicThrowablegetCause() {
returnthis.cause;
}
}