类 SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
gu.sql2java.utils.SerializationException
- 所有已实现的接口:
Serializable
copy from org.apache.commons.lang.SerializationException (commons-lang:commons-lang.2.4)
Exception thrown when the Serialization process fails.
The original error is wrapped within this one.
- 从以下版本开始:
- 3.24.0
- 作者:
- Stephen Colebourne
- 另请参阅:
-
构造器概要
构造器构造器说明Constructs a newSerializationExceptionwithout specified detail message.Constructs a newSerializationExceptionwith specified detail message.SerializationException(String msg, Throwable cause) Constructs a newSerializationExceptionwith specified detail message and nestedThrowable.SerializationException(Throwable cause) Constructs a newSerializationExceptionwith specified nestedThrowable. -
方法概要
-
构造器详细资料
-
SerializationException
public SerializationException()Constructs a new
SerializationExceptionwithout specified detail message. -
SerializationException
Constructs a new
SerializationExceptionwith specified detail message.- 参数:
msg- The error message.
-
SerializationException
Constructs a new
SerializationExceptionwith specified nestedThrowable.- 参数:
cause- TheExceptionorErrorthat caused this exception to be thrown.
-
SerializationException
Constructs a new
SerializationExceptionwith specified detail message and nestedThrowable.- 参数:
msg- The error message.cause- TheExceptionorErrorthat caused this exception to be thrown.
-