Package com.aspectran.core.activity
Class ActivityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.aspectran.core.activity.ActivityException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ActivityPerformException
,ActivityPrepareException
,AdapterException
,AdviceConstraintViolationException
,AspectAdviceException
,ProcessException
,RequestException
,ResponseException
,TransletNotFoundException
Checked exception thrown when an activity fails.
Created: 2008. 01. 07 AM 3:35:55
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a new ActivityException.ActivityException
(String msg) Instantiates a new ActivityException.ActivityException
(String msg, Throwable cause) Instantiates a new ActivityException.ActivityException
(Throwable cause) Instantiates a new ActivityException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ActivityException
public ActivityException()Instantiates a new ActivityException. -
ActivityException
Instantiates a new ActivityException.- Parameters:
msg
- a message to associate with the exception
-
ActivityException
Instantiates a new ActivityException.- Parameters:
cause
- the real cause of the exception
-
ActivityException
Instantiates a new ActivityException.- Parameters:
msg
- the messagecause
- the real cause of the exception
-