Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.data.redis.serializer.SerializationException
- All Implemented Interfaces:
Serializable
public class SerializationException
extends org.springframework.core.NestedRuntimeException
Generic exception indicating a serialization/deserialization error.
- Author:
- Costin Leau, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newSerializationException
instance.SerializationException
(String msg, Throwable cause) Constructs a newSerializationException
instance. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SerializationException
Constructs a newSerializationException
instance.- Parameters:
msg
-
-
SerializationException
Constructs a newSerializationException
instance.- Parameters:
msg
- the detail message.cause
- the nested exception.
-