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
public class FastJsonException extends Exception
Similar toJSONException
, but with the difference that this is a checked exception.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FastJsonException(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 Detail
-
FastJsonException
public FastJsonException(String message)
Creates a new fast JSON exception with the given message.- Parameters:
message
- Message explaining the exception that occurred.
-
FastJsonException
public FastJsonException(String message, Throwable cause)
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
public FastJsonException(Throwable cause)
Creates a new fast JSON exception with the given cause.- Parameters:
cause
- The underlying cause that resulted in this exception.
-
-