类 SerializationFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.core.serializer.support.SerializationFailedException
- 所有已实现的接口:
NestedException,Serializable
Wrapper for the native IOException (or similar) when a
Serializer or
Deserializer failed.
Thrown by SerializingConverter and DeserializingConverter.- 从以下版本开始:
- 4.0
- 作者:
- Gary Russell, Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器构造器说明SerializationFailedException(String message) Construct aSerializationExceptionwith the specified detail message.SerializationFailedException(String message, Throwable cause) Construct aSerializationExceptionwith the specified detail message and nested exception. -
方法概要
从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
构造器详细资料
-
SerializationFailedException
Construct aSerializationExceptionwith the specified detail message.- 参数:
message- the detail message
-
SerializationFailedException
Construct aSerializationExceptionwith the specified detail message and nested exception.- 参数:
message- the detail messagecause- the nested exception
-