Klasse FatalParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.inet.report.ReportException
com.inet.report.parser.FatalParserException
- Alle implementierten Schnittstellen:
com.inet.error.HasErrorCode, Serializable
The FatalParserException is thrown while parsing only if a fatal and unrecoverable error occurs
which causes the report to not be able to be parsed. The throwable is wrapped in this
exception and can be accessed with the methods
ReportException.setCause(Throwable) and
Throwable.getCause().- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungFatalParserException(String tag, Attributes atts, String msg, int messageId) Creates a fatal parser exception, which means that the parsing of a report has been fatally terminated because the report was unreadable for a certain reason. -
Methodenübersicht
Von Klasse geerbte Methoden ReportException
getErrorCode, setCause, toStringVon Klasse geerbte Methoden Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Konstruktordetails
-
FatalParserException
Creates a fatal parser exception, which means that the parsing of a report has been fatally terminated because the report was unreadable for a certain reason.- Parameter:
tag- XML Tag currently being parsed at the time of the exception. Null if not applicable.atts- SAX attributes of the tag currently being parsed at the time of the exception. Null if not applicable.msg- Message of the parser exceptionmessageId- ID of the message- Seit:
- 8.0
-
-
Methodendetails
-
getTag
Returns the XML Tag currently being parsed at the time of the exception. Null if not applicable.- Gibt zurück:
- XML Tag currently being parsed at the time of the exception. Null if not applicable.
- Seit:
- 8.0
-
getAtts
Returns the SAX attributes of the tag currently being parsed at the time of the exception. Null if not applicable.- Gibt zurück:
- SAX attributes of the tag currently being parsed at the time of the exception. Null if not applicable.
- Seit:
- 8.0
-