File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,19 @@ public JSONException(String message) {
21
21
}
22
22
23
23
/**
24
- * Constructs a new JSONException with the specified cause.
24
+ * Constructs a new JSONException with the specified cause.
25
25
*/
26
26
public JSONException (Throwable cause ) {
27
27
super (cause .getMessage ());
28
28
this .cause = cause ;
29
29
}
30
30
31
31
/**
32
- * Returns the cause of this throwable or null if the cause is nonexistent or unknown.
33
- * @returns the cause of this throwable or null if the cause is nonexistent or unknown.
32
+ * Returns the cause of this exception or null if the cause is nonexistent
33
+ * or unknown.
34
+ *
35
+ * @returns the cause of this exception or null if the cause is nonexistent
36
+ * or unknown.
34
37
*/
35
38
public Throwable getCause () {
36
39
return this .cause ;
You can’t perform that action at this time.
0 commit comments