Package de.xima.fc.exceptions
Class FastJsonException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.exceptions.FastJsonException
- All Implemented Interfaces:
Serializable
Similar to
JSONException
, but with the difference that this is a checked exception.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFastJsonException
(String message) Creates a new fast JSON exception with the given message.FastJsonException
(String message, Throwable cause) Creates a new fast JSON exception with the given message and cause.FastJsonException
(Throwable cause) Creates a new fast JSON exception with the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FastJsonException
Creates a new fast JSON exception with the given message.- Parameters:
message
- Message explaining the exception that occurred.
-
FastJsonException
Creates a new fast JSON exception with the given message and cause.- Parameters:
message
- Message explaining the exception that occurred.cause
- The underlying cause that resulted in this exception.
-
FastJsonException
Creates a new fast JSON exception with the given cause.- Parameters:
cause
- The underlying cause that resulted in this exception.
-