| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.opensymphony.xwork.XworkException com.opensymphony.webwork.WebWorkException
WebWorkException | public class WebWorkException extends XworkException (Code) | | WebWorkException
A generic runtime exception that optionally contains Location information
author: Rainer Hermanns version: $Id: WebWorkException.java 2647 2006-07-13 21:51:16Z rainerh $ |
WebWorkException | public WebWorkException()(Code) | | Constructs a WebWorkException with no detail message.
|
WebWorkException | public WebWorkException(String s)(Code) | | Constructs a WebWorkException with the specified
detail message.
Parameters: s - the detail message. |
WebWorkException | public WebWorkException(String s, Object target)(Code) | | Constructs a WebWorkException with the specified
detail message and target.
Parameters: s - the detail message. Parameters: target - the target of the exception. |
WebWorkException | public WebWorkException(Throwable cause)(Code) | | Constructs a WebWorkException with the root cause
Parameters: cause - The wrapped exception |
WebWorkException | public WebWorkException(Throwable cause, Object target)(Code) | | Constructs a WebWorkException with the root cause and target
Parameters: cause - The wrapped exception Parameters: target - The target of the exception |
WebWorkException | public WebWorkException(String s, Throwable cause)(Code) | | Constructs a WebWorkException with the specified
detail message and exception cause.
Parameters: s - the detail message. Parameters: cause - the wrapped exception |
WebWorkException | public WebWorkException(String s, Throwable cause, Object target)(Code) | | Constructs a WebWorkException with the specified
detail message, cause, and target
Parameters: s - the detail message. Parameters: cause - The wrapped exception Parameters: target - The target of the exception |
|
|