Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 1 (11.1.1.5.0)

E10653-06


oracle.jbo.uicli.binding
Interface JUErrorHandler

All Known Implementing Classes:
JUErrorHandlerDialog, JUErrorHandlerDlg, JUErrorHandlerThrow

public interface JUErrorHandler

Implements reporting of all JClient and BC4J exceptions raised in the context of a JUFormBinding.

Applications could customize exception reporting in JClient by implementing this interface and providing a custom implementation to display/handle BC4J and JClient exceptions.

By default JUErrorHandlerThrow implements this interface and throws all exceptions as a JboException which is a generic Java runtime exception and base class for all BC4J and JClient exceptions.

For generated applications from JClient wizards, the wizards generate a call to set JUErrorHandlerDialog as the default error handler so that all exceptions are displayed in an error dialog.

See Also:
JboException, JUErrorHandlerThrow, JUErrorHandlerDialog

Method Summary
 void reportException(JUFormBinding formBnd, java.lang.Exception ex)
          Implements how to handle the given exception raised within the JClient framework in the context of the given form binding.
 void reportException(JUFormBinding formBnd, java.lang.Exception ex, boolean reportExceptionNow)
           

 

Method Detail

reportException

void reportException(JUFormBinding formBnd,
                     java.lang.Exception ex)
Implements how to handle the given exception raised within the JClient framework in the context of the given form binding.

reportException

void reportException(JUFormBinding formBnd,
                     java.lang.Exception ex,
                     boolean reportExceptionNow)
Parameters:
formBnd - the binding where the exception was caused
ex - the exception to report
reportExceptionNow - true if the caller should be stopped until the exception is reported. If an exception is fatal, and the calling program wants to abort, the calling program typically wants to wait till the exception is shown to the user.
See Also:
reportException(JUFormBinding, Exception)

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 1 (11.1.1.5.0)

E10653-06


Copyright © 1997, 2011, Oracle. All rights reserved.