java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.xml.stream.XMLStreamException
- 所有已实现的接口:
-
Serializable
用于意外处理错误的基本异常。此异常类用于报告格式错误以及意外的处理条件。
- 自从:
- 1.6
- 参见:
-
Field Summary
-
Constructor Summary
ConstructorDescription默认构造函数XMLStreamException
(String msg) 使用相关消息构造异常。XMLStreamException
(String msg, Throwable th) 使用相关消息和异常构造异常XMLStreamException
(String msg, Location location) 使用相关消息、异常和位置构造异常。XMLStreamException
(String msg, Location location, Throwable th) 使用相关消息、异常和位置构造异常。使用相关异常构造异常 -
Method Summary
Modifier and TypeMethodDescription获取异常的位置获取嵌套异常。Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
nested
嵌套异常。 -
location
错误的位置。
-
-
Constructor Details
-
XMLStreamException
public XMLStreamException()默认构造函数 -
XMLStreamException
使用相关消息构造异常。- 参数:
-
msg
- 要报告的消息
-
XMLStreamException
使用相关异常构造异常- 参数:
-
th
- 一个嵌套异常
-
XMLStreamException
使用相关消息和异常构造异常- 参数:
-
msg
- 要报告的消息 -
th
- 一个嵌套异常
-
XMLStreamException
使用相关消息、异常和位置构造异常。- 参数:
-
msg
- 要报告的消息 -
location
- 错误的位置 -
th
- 一个嵌套异常
-
XMLStreamException
使用相关消息、异常和位置构造异常。- 参数:
-
msg
- 要报告的消息 -
location
- 错误的位置
-
-
Method Details
-
getNestedException
获取嵌套异常。- 返回:
- 嵌套异常
-
getLocation
获取异常的位置- 返回:
- 异常的位置,如果没有可用位置则可能为null
-