-
public interface XMLReporter
此接口用于报告非致命错误。 只有警告才能通过此界面回显。- 从以下版本开始:
- 1.6
-
-
方法详细信息
-
report
void report(String message, String errorType, Object relatedInformation, Location location) throws XMLStreamException
以特定于应用程序的格式报告所需的消息。 只应通过此界面报告警告和非致命错误。 应该抛出致命错误作为XMLStreamException。- 参数
-
message
- 错误消息 -
errorType
- 实现定义的错误类型 -
relatedInformation
- 与错误相关的信息(如果有) -
location
- 错误的位置(如果有) - 异常
-
XMLStreamException
-
-