Package org.htmlunit.cyberneko
Interface HTMLErrorReporter
-
- All Known Implementing Classes:
HTMLConfiguration.ErrorReporter
public interface HTMLErrorReporter
Defines an error reporter for reporting HTML errors. There is no such thing as a fatal error in parsing HTML. I/O errors are fatal but should throw anIOException
directly instead of reporting an error.When used in a configuration, the error reporter instance should be set as a property with the following property identifier:
"http://cyberneko.org/html/internal/error-reporter" in the
Components in the configuration can query the error reporter using this property identifier.Note: All reported errors are within the domain "http://cyberneko.org/html".
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
formatMessage(java.lang.String key, java.lang.Object[] args)
Format message without reporting error.void
reportError(java.lang.String key, java.lang.Object[] args)
Reports an error.void
reportWarning(java.lang.String key, java.lang.Object[] args)
Reports a warning.
-
-
-
Method Detail
-
formatMessage
java.lang.String formatMessage(java.lang.String key, java.lang.Object[] args)
Format message without reporting error.- Parameters:
key
- keyargs
- args- Returns:
- string
-
reportWarning
void reportWarning(java.lang.String key, java.lang.Object[] args) throws XMLParseException
Reports a warning.- Parameters:
key
- keyargs
- args- Throws:
XMLParseException
-
reportError
void reportError(java.lang.String key, java.lang.Object[] args) throws XMLParseException
Reports an error.- Parameters:
key
- keyargs
- args- Throws:
XMLParseException
-
-