org.apache.woden
Interface ErrorHandler
- All Known Implementing Classes:
- ErrorHandlerImpl, Report
- public interface ErrorHandler
This interface declares operations for handling three types
of errors; warnings, errors and fatal errors. Implementations should define
behaviour for these types of errors appropriate to their requirements.
For example, errors may be reported immediately by printing to the system
output stream or they may be cached for further processing by the invoking
application.
This is based on the Xerces error reporter.
- Author:
- jkaputin@apache.org
warning
public void warning(ErrorInfo errorInfo)
error
public void error(ErrorInfo errorInfo)
fatalError
public void fatalError(ErrorInfo errorInfo)
Copyright © 2005-2007 Apache Software Foundation. All Rights Reserved.