oracle.dacf.dataset
Interface ExceptionProcessorListener
- All Superinterfaces:
- java.util.EventListener
- public interface ExceptionProcessorListener
- extends java.util.EventListener
Defines the set of methods that must be implemented when one wishes
to monitor the processing of exceptions by the ExceptionProcessor.
A listener can prevent the exception from being processed by throwing
an ExceptionProcessorVetoException exception.
- Version:
- SDK; since JDeveloper 3.0
- See Also:
ExceptionProcessor
,
ExceptionProcessorEvent
processingException
public void processingException(ExceptionProcessorEvent e)
throws ExceptionProcessorVetoException
- Listener that is called when processing a generic exception
- Throws:
ExceptionProcessorVetoException
- Thrown if the exception is
to be ignored.
processingCSException
public void processingCSException(ExceptionProcessorEvent e)
throws ExceptionProcessorVetoException
- Listener that is called when processing an exception from database
access.
- Throws:
ExceptionProcessorVetoException
- Thrown if the exception is
to be ignored.