Class ResponseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.aspectran.core.activity.ActivityException
com.aspectran.core.activity.response.ResponseException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CustomTransformResponseException
,DispatchResponseException
,TransformResponseException
,ViewDispatcherException
The Class ResponseException.
Created: 2008. 01. 07 AM 3:35:55
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimple constructor.ResponseException
(String msg) Constructor to create exception with a message.ResponseException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message.ResponseException
(Throwable cause) Constructor to create exception to wrap another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResponseException
public ResponseException()Simple constructor. -
ResponseException
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
ResponseException
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
ResponseException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the messagecause
- the real cause of the exception
-