java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.ObjectStreamException
- 所有已实现的接口:
-
Serializable
- 直接已知子类:
-
InvalidClassException
,InvalidObjectException
,NotActiveException
,NotSerializableException
,OptionalDataException
,StreamCorruptedException
,WriteAbortedException
所有特定于对象流类的异常的超类。
- 自从:
- 1.1
- 参见:
-
Constructor Summary
ModifierConstructorDescriptionprotected
创建一个ObjectStreamException。protected
ObjectStreamException
(String message) 创建一个带有指定参数的ObjectStreamException。protected
ObjectStreamException
(String message, Throwable cause) 创建一个带有指定消息和原因的ObjectStreamException。protected
ObjectStreamException
(Throwable cause) 创建一个带有指定原因的ObjectStreamException。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ObjectStreamException
创建一个带有指定参数的ObjectStreamException。- 参数:
-
message
- 异常的详细消息
-
ObjectStreamException
创建一个带有指定消息和原因的ObjectStreamException。- 参数:
-
message
- 异常的详细消息 -
cause
- 原因 - 自从:
- 19
-
ObjectStreamException
protected ObjectStreamException()创建一个ObjectStreamException。 -
ObjectStreamException
创建一个带有指定原因的ObjectStreamException。- 参数:
-
cause
- 原因 - 自从:
- 19
-