| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | * The JSONException is thrown by the JSON.org classes when things are amiss. | |
| 5 | 5 | * | |
| 6 | 6 | * @author JSON.org | |
| 7 | - * @version 2015-10-14 | ||
| 7 | + * @version 2015-10-18 | ||
| 8 | 8 | */ | |
| 9 | 9 | public class JSONException extends RuntimeException { | |
| 10 | 10 | /** Serialization ID */ | |
@@ -17,7 +17,7 @@ public class JSONException extends RuntimeException { | |||
| 17 | 17 | * Detail about the reason for the exception. | |
| 18 | 18 | */ | |
| 19 | 19 | public JSONException(final String message) { | |
| 20 | - super(message); | ||
| 20 | + super(message); | ||
| 21 | 21 | } | |
| 22 | 22 | ||
| 23 | 23 | /** | |
@@ -29,7 +29,7 @@ public JSONException(final String message) { | |||
| 29 | 29 | * The cause. | |
| 30 | 30 | */ | |
| 31 | 31 | public JSONException(final String message, final Throwable cause) { | |
| 32 | - super(message, cause); | ||
| 32 | + super(message, cause); | ||
| 33 | 33 | } | |
| 34 | 34 | ||
| 35 | 35 | /** | |
@@ -39,7 +39,7 @@ public JSONException(final String message, final Throwable cause) { | |||
| 39 | 39 | * The cause. | |
| 40 | 40 | */ | |
| 41 | 41 | public JSONException(final Throwable cause) { | |
| 42 | - super(cause.getMessage(), cause); | ||
| 42 | + super(cause.getMessage(), cause); | ||
| 43 | 43 | } | |
| 44 | 44 | ||
| 45 | 45 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments