git://source.jalview.org
/
jalview.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'features/r2_11_2/JAL-3821_reinstate_patch' into develop
[jalview.git]
/
unused
/
javajs
/
util
/
JSONException.java
1
package javajs.util;
2
3
public class JSONException extends RuntimeException {
4
public JSONException(String message) {
5
super(message);
6
}
7
8
public JSONException(Throwable cause) {
9
super(cause.getMessage());
10
this.cause = cause;
11
}
12
13
public Throwable getCause() {
14
return this.cause;
15
}
16
}
17
18
}