Class JsonSerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.dominokit.jacksonapt.exception.JsonMappingException
org.dominokit.jacksonapt.exception.JsonSerializationException
- All Implemented Interfaces:
java.io.Serializable
public class JsonSerializationException extends JsonMappingException
Base exception for serialization process
- Version:
- $Id: $
- Author:
- Nicolas Morel
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description JsonSerializationException()Constructor for JsonSerializationException.JsonSerializationException(java.lang.String message)Constructor for JsonSerializationException.JsonSerializationException(java.lang.String message, java.lang.Throwable cause)Constructor for JsonSerializationException.JsonSerializationException(java.lang.Throwable cause)Constructor for JsonSerializationException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
JsonSerializationException
public JsonSerializationException()Constructor for JsonSerializationException.
-
JsonSerializationException
public JsonSerializationException(java.lang.String message)Constructor for JsonSerializationException.
- Parameters:
message- aStringobject.
-
JsonSerializationException
public JsonSerializationException(java.lang.String message, java.lang.Throwable cause)Constructor for JsonSerializationException.
- Parameters:
message- aStringobject.cause- aThrowableobject.
-
JsonSerializationException
public JsonSerializationException(java.lang.Throwable cause)Constructor for JsonSerializationException.
- Parameters:
cause- aThrowableobject.
-