Class RequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.aspectran.core.activity.ActivityException
com.aspectran.core.activity.request.RequestException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RequestMethodNotAllowedException
,RequestParseException
Checked exception thrown if an error occurs while translet is
parsing the request.
Created: 2008. 01. 07 AM 3:35:55
- See Also:
-
Constructor Summary
ConstructorDescriptionInstantiates a new RequestException.RequestException
(String msg) Instantiates a new RequestException.RequestException
(String msg, Throwable cause) Instantiates a new RequestException.RequestException
(Throwable cause) Instantiates a new RequestException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RequestException
public RequestException()Instantiates a new RequestException. -
RequestException
Instantiates a new RequestException.- Parameters:
msg
- the detail message
-
RequestException
Instantiates a new RequestException.- Parameters:
cause
- the real cause of the exception
-
RequestException
Instantiates a new RequestException.- Parameters:
msg
- the detail messagecause
- the real cause of the exception
-