Skip to content

Commit e7f4eb5

Browse files
committed
Set version date to match commit date, convert tabs to spaces.
1 parent b0a9507 commit e7f4eb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

JSONException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The JSONException is thrown by the JSON.org classes when things are amiss.
55
*
66
* @author JSON.org
7-
* @version 2015-10-14
7+
* @version 2015-10-18
88
*/
99
public class JSONException extends RuntimeException {
1010
/** Serialization ID */
@@ -17,7 +17,7 @@ public class JSONException extends RuntimeException {
1717
* Detail about the reason for the exception.
1818
*/
1919
public JSONException(final String message) {
20-
super(message);
20+
super(message);
2121
}
2222

2323
/**
@@ -29,7 +29,7 @@ public JSONException(final String message) {
2929
* The cause.
3030
*/
3131
public JSONException(final String message, final Throwable cause) {
32-
super(message, cause);
32+
super(message, cause);
3333
}
3434

3535
/**
@@ -39,7 +39,7 @@ public JSONException(final String message, final Throwable cause) {
3939
* The cause.
4040
*/
4141
public JSONException(final Throwable cause) {
42-
super(cause.getMessage(), cause);
42+
super(cause.getMessage(), cause);
4343
}
4444

4545
}

0 commit comments

Comments
 (0)