StrutsExceptionpublic class StrutsException extends com.opensymphony.xwork2.XWorkException implements com.opensymphony.xwork2.util.location.LocatableA generic runtime exception that optionally contains Location information |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public StrutsException()Constructs a StrutsException with no detail message.
| public StrutsException(String s)Constructs a StrutsException with the specified
detail message.
this(s, null, null);
| public StrutsException(String s, Object target)Constructs a StrutsException with the specified
detail message and target.
this(s, (Throwable) null, target);
| public StrutsException(Throwable cause)Constructs a StrutsException with the root cause
this(null, cause, null);
| public StrutsException(Throwable cause, Object target)Constructs a StrutsException with the root cause and target
this(null, cause, target);
| public StrutsException(String s, Throwable cause)Constructs a StrutsException with the specified
detail message and exception cause.
this(s, cause, null);
| public StrutsException(String s, Throwable cause, Object target)Constructs a StrutsException with the specified
detail message, cause, and target
super(s, cause, target);
|
|