java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.ObjectStreamException
java.io.WriteAbortedException
- 所有已实现的接口:
-
Serializable
表示在写操作期间抛出了ObjectStreamExceptions之一。在读操作期间,当在写操作期间抛出了ObjectStreamExceptions之一时抛出。终止写操作的异常可以在详细字段中找到。流将被重置为其初始状态,并且所有已反序列化的对象的引用都将被丢弃。
- 自从:
- 1.1
- 参见:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionWriteAbortedException
(String s, Exception ex) 使用描述异常的字符串和导致中止的异常构造WriteAbortedException。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
detail
Deprecated.This field predates the general-purpose exception chaining facility. TheThrowable.getCause()
method is now the preferred means of obtaining this information.写入ObjectStream时捕获的异常。
-
-
Constructor Details
-
WriteAbortedException
使用描述异常的字符串和导致中止的异常构造WriteAbortedException。- 参数:
-
s
- 描述异常的字符串。 -
ex
- 导致中止的异常。
-
-
Method Details
-
getMessage
生成消息并包括嵌套异常的消息(如果有)。- 覆盖:
-
getMessage
在类Throwable
- 返回:
-
此
Throwable
实例的详细消息字符串(可能为null
)。
-
getCause
返回终止操作的异常(cause)。
-