| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.sun.rave.web.ui.appbase.ApplicationException
ApplicationException | public class ApplicationException extends RuntimeException (Code) | | Application exception class that wraps the one or more runtime
exceptions that were intercepted and cached during the execution of
a particular request's lifecycle. Call the getExceptions()
method to retrieve the cached exception instances.
|
Method Summary | |
public List | getExceptions() Return a List of the cached exceptions associated with
this exception. |
ApplicationException | public ApplicationException()(Code) | | Construct a new exception with no additional information.
|
ApplicationException | public ApplicationException(String message)(Code) | | Construct a new exception with the specified detail message.
Parameters: message - Detail message for this exception |
ApplicationException | public ApplicationException(String message, Throwable cause)(Code) | | Construct a new exception with the specified detail message and
root cause.
Parameters: message - Detail message for this exception Parameters: cause - Root cause for this exception |
ApplicationException | public ApplicationException(Throwable cause)(Code) | | Construct a new exception with the specified root cause.
Parameters: cause - Root cause for this exception |
ApplicationException | public ApplicationException(Throwable cause, List list)(Code) | | Construct a new exception with the specified root cause and
list of cached exceptions.
Parameters: cause - Root cause for this exception Parameters: list - List of cached exceptions |
ApplicationException | public ApplicationException(String message, Throwable cause, List list)(Code) | | Construct a new exception with the specified detail message,
root cause, and list of cached exceptions.
Parameters: message - Detail message for this exception Parameters: cause - Root cause for this exception Parameters: list - List of cached exceptions |
getExceptions | public List getExceptions()(Code) | | Return a List of the cached exceptions associated with
this exception. If no such exceptions were associated, return
null instead.
|
|
|