- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- at.syntaxerror.json5.JSONException
-
- All Implemented Interfaces:
java.io.Serializable
public class JSONException extends java.lang.RuntimeExceptionAn exception used by the JSON5 for Java Library if something went wrong- Version:
- 1.0.0
- Author:
- SyntaxError404
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JSONException()Constructs a new JSONExceptionJSONException(java.lang.String message)Constructs a new JSONException with a detail messageJSONException(java.lang.String message, java.lang.Throwable cause)Constructs a new JSONException with a detail message and a causing exceptionJSONException(java.lang.Throwable cause)Constructs a new JSONException with a causing exception
-
-
-
Constructor Detail
-
JSONException
public JSONException()
Constructs a new JSONException
-
JSONException
public JSONException(java.lang.String message)
Constructs a new JSONException with a detail message- Parameters:
message- the detail message
-
JSONException
public JSONException(java.lang.Throwable cause)
Constructs a new JSONException with a causing exception- Parameters:
cause- the causing exception
-
JSONException
public JSONException(java.lang.String message, java.lang.Throwable cause)Constructs a new JSONException with a detail message and a causing exception- Parameters:
message- the detail messagecause- the causing exception
-
-