Oracle Data-aware Controls Reference

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

Method Summary
 void processingCSException(ExceptionProcessorEvent e)
          Listener that is called when processing an exception from database access.
 void processingException(ExceptionProcessorEvent e)
          Listener that is called when processing a generic exception
 

Method Detail

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.

Oracle Data-aware Controls Reference