oracle.xml.pipeline.controller
Interface PipelineErrorHandler
- All Known Implementing Classes:
- orapipe
- public interface PipelineErrorHandler
For Pipeline Errors the application calling the Pipeline Processor
must implement this interface to handle errors received from the Pipeline
Processor. This should be set in the PipelineProcessor. It is up to the
application to decide whether to throw an exception for different types of
errors.
error
public void error(java.lang.String msg,
PipelineException e)
throws java.lang.Exception
java.lang.Exception
fatalError
public void fatalError(java.lang.String msg,
PipelineException e)
throws java.lang.Exception
java.lang.Exception
warning
public void warning(java.lang.String msg,
PipelineException e)
throws java.lang.Exception
java.lang.Exception
info
public void info(java.lang.String msg)