public class WriteAbortedException extends ObjectStreamException
从版本1.4开始,这种异常已被改进以符合通用异常链接机制。 在建造时提供并通过公共detail
字段访问的“异常导致中止”现在被称为原因 ,并且可以通过Throwable.getCause()
方法以及上述“传统字段”来访问。
Constructor and Description |
---|
WriteAbortedException(String s, 异常 ex)
构造一个WriteAbortedException,其中包含一个描述异常的字符串,异常导致中止。
|
Modifier and Type | Method and Description |
---|---|
Throwable |
getCause()
返回终止操作的异常(
原因 )。
|
String |
getMessage()
生成消息并将嵌套异常中的消息包含在内。
|
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public 异常 detail
该领域早于通用异常链接工具。 Throwable.getCause()
方法现在是获取此信息的首选方法。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.