Package com.sun.tools.txw2
Interface ErrorListener
-
- All Superinterfaces:
ErrorHandler
- All Known Implementing Classes:
AntErrorListener
,ConsoleErrorReporter
public interface ErrorListener extends ErrorHandler
Used internally to report errors.- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
error(SAXParseException exception)
void
fatalError(SAXParseException exception)
void
warning(SAXParseException exception)
-
-
-
Method Detail
-
error
void error(SAXParseException exception)
- Specified by:
error
in interfaceErrorHandler
-
fatalError
void fatalError(SAXParseException exception)
- Specified by:
fatalError
in interfaceErrorHandler
-
warning
void warning(SAXParseException exception)
- Specified by:
warning
in interfaceErrorHandler
-
-