Package com.aspectran.core.activity
Class ActivityTerminatedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.aspectran.core.activity.ActivityException
-
- com.aspectran.core.activity.ActivityPerformException
-
- com.aspectran.core.activity.ActivityTerminatedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ActivityTerminatedException extends ActivityPerformException
Exception thrown when an activity is terminated during preparation or execution.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActivityTerminatedException()Simple constructor.ActivityTerminatedException(java.lang.String msg)Constructor to create exception with a message.ActivityTerminatedException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.ActivityTerminatedException(java.lang.Throwable cause)Constructor to create exception to wrap another exception.
-
-
-
Constructor Detail
-
ActivityTerminatedException
public ActivityTerminatedException()
Simple constructor.
-
ActivityTerminatedException
public ActivityTerminatedException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg- a message to associate with the exception
-
ActivityTerminatedException
public ActivityTerminatedException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause- the real cause of the exception
-
ActivityTerminatedException
public ActivityTerminatedException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg- the messagecause- the real cause of the exception
-
-