- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.ObjectStreamException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
InvalidClassException
,InvalidObjectException
,NotActiveException
,NotSerializableException
,OptionalDataException
,StreamCorruptedException
,WriteAbortedException
public abstract class ObjectStreamException extends IOException
对象流类别特有的所有异常的超类。- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
ObjectStreamException()
创建一个ObjectStreamException。protected
ObjectStreamException(String message)
使用指定的参数创建一个ObjectStreamException。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ObjectStreamException
protected ObjectStreamException(String message)
使用指定的参数创建一个ObjectStreamException。- 参数
-
message
- 有关异常的详细信息
-
ObjectStreamException
protected ObjectStreamException()
创建一个ObjectStreamException。
-
-