We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8d12c commit dedbd0dCopy full SHA for dedbd0d
JSONException.java
@@ -21,16 +21,19 @@ public JSONException(String message) {
21
}
22
23
/**
24
- * Constructs a new JSONException with the specified cause.
+ * Constructs a new JSONException with the specified cause.
25
*/
26
public JSONException(Throwable cause) {
27
super(cause.getMessage());
28
this.cause = cause;
29
30
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.
+ * Returns the cause of this exception or null if the cause is nonexistent
+ * or unknown.
34
+ *
35
+ * @returns the cause of this exception or null if the cause is nonexistent
36
37
38
public Throwable getCause() {
39
return this.cause;
0 commit comments