ExceptionHandler

API

ExceptionHandler.java
interface ExceptionHandler {
  Object handle(Exception ex)     (1)
}
1 handle(Exception)

Handle the exception in some way. Typically this will log and rethrow the exception. If necessary though it can return some other value instead (must be compatible with the expected return value of the interaction, that is, the action invocation or property edit).

Members

handle(Exception)

Handle the exception in some way. Typically this will log and rethrow the exception. If necessary though it can return some other value instead (must be compatible with the expected return value of the interaction, that is, the action invocation or property edit).