public interface XMLReporter
该接口用于报告非致命错误。只有警告应通过此接口回显。
- 自从:
- 1.6
-
Method Summary
-
Method Details
-
report
void report(String message, String errorType, Object relatedInformation, Location location) throws XMLStreamException 以应用程序特定的格式报告所需的消息。只有警告和非致命错误应通过此接口报告。致命错误应抛出为XMLStreamException。- 参数:
-
message
- 错误消息 -
errorType
- 一个实现定义的错误类型 -
relatedInformation
- 如果可用,与错误相关的信息 -
location
- 如果可用,错误的位置 - 抛出:
-
XMLStreamException
- 如果发生错误
-