summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/external/json/JSONException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/external/json/JSONException.java')
-rw-r--r--src/com/vaadin/external/json/JSONException.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/com/vaadin/external/json/JSONException.java b/src/com/vaadin/external/json/JSONException.java
index d799021506..fecc38974e 100644
--- a/src/com/vaadin/external/json/JSONException.java
+++ b/src/com/vaadin/external/json/JSONException.java
@@ -2,16 +2,19 @@ package com.vaadin.external.json;
/**
* The JSONException is thrown by the JSON.org classes when things are amiss.
+ *
* @author JSON.org
* @version 2010-12-24
*/
public class JSONException extends Exception {
- private static final long serialVersionUID = 0;
- private Throwable cause;
+ private static final long serialVersionUID = 0;
+ private Throwable cause;
/**
* Constructs a JSONException with an explanatory message.
- * @param message Detail about the reason for the exception.
+ *
+ * @param message
+ * Detail about the reason for the exception.
*/
public JSONException(String message) {
super(message);