| org.apache.struts2.StrutsException
StrutsException | public class StrutsException extends XWorkException implements Locatable(Code) | | A generic runtime exception that optionally contains Location information
|
StrutsException | public StrutsException()(Code) | | Constructs a StrutsException with no detail message.
|
StrutsException | public StrutsException(String s)(Code) | | Constructs a StrutsException with the specified
detail message.
Parameters: s - the detail message. |
StrutsException | public StrutsException(String s, Object target)(Code) | | Constructs a StrutsException with the specified
detail message and target.
Parameters: s - the detail message. Parameters: target - the target of the exception. |
StrutsException | public StrutsException(Throwable cause)(Code) | | Constructs a StrutsException with the root cause
Parameters: cause - The wrapped exception |
StrutsException | public StrutsException(Throwable cause, Object target)(Code) | | Constructs a StrutsException with the root cause and target
Parameters: cause - The wrapped exception Parameters: target - The target of the exception |
StrutsException | public StrutsException(String s, Throwable cause)(Code) | | Constructs a StrutsException with the specified
detail message and exception cause.
Parameters: s - the detail message. Parameters: cause - the wrapped exception |
StrutsException | public StrutsException(String s, Throwable cause, Object target)(Code) | | Constructs a StrutsException 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 |
|
|