Package de.marhali.json5.exception
Class Json5Exception
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.marhali.json5.exception.Json5Exception
-
- All Implemented Interfaces:
java.io.Serializable
public class Json5Exception extends java.lang.RuntimeExceptionDescribes exceptions which occur during json5 parsing and serialization.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Json5Exception()Constructs a new JSONExceptionJson5Exception(java.lang.String message)Constructs a new JSONException with a detail messageJson5Exception(java.lang.String message, java.lang.Throwable cause)Constructs a new JSONException with a detail message and a causing exceptionJson5Exception(java.lang.Throwable cause)Constructs a new JSONException with a causing exception
-
-
-
Constructor Detail
-
Json5Exception
public Json5Exception()
Constructs a new JSONException
-
Json5Exception
public Json5Exception(java.lang.String message)
Constructs a new JSONException with a detail message- Parameters:
message- the detail message
-
Json5Exception
public Json5Exception(java.lang.Throwable cause)
Constructs a new JSONException with a causing exception- Parameters:
cause- the causing exception
-
Json5Exception
public Json5Exception(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
-
-