From e7f4eb5f67048642e24634db8ec8c7e6f29c0c22 Mon Sep 17 00:00:00 2001 From: Sean Leary Date: Sun, 18 Oct 2015 11:05:29 -0500 Subject: [PATCH] Set version date to match commit date, convert tabs to spaces. --- JSONException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JSONException.java b/JSONException.java index 8503e35..7601b7e 100755 --- a/JSONException.java +++ b/JSONException.java @@ -4,7 +4,7 @@ package org.json; * The JSONException is thrown by the JSON.org classes when things are amiss. * * @author JSON.org - * @version 2015-10-14 + * @version 2015-10-18 */ public class JSONException extends RuntimeException { /** Serialization ID */ @@ -17,7 +17,7 @@ public class JSONException extends RuntimeException { * Detail about the reason for the exception. */ public JSONException(final String message) { - super(message); + super(message); } /** @@ -29,7 +29,7 @@ public class JSONException extends RuntimeException { * The cause. */ public JSONException(final String message, final Throwable cause) { - super(message, cause); + super(message, cause); } /** @@ -39,7 +39,7 @@ public class JSONException extends RuntimeException { * The cause. */ public JSONException(final Throwable cause) { - super(cause.getMessage(), cause); + super(cause.getMessage(), cause); } }