Class ActionExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.activity.ActivityException
-
- com.aspectran.core.activity.process.ProcessException
-
- com.aspectran.core.activity.process.action.ActionExecutionException
-
- All Implemented Interfaces:
java.io.Serializable
public class ActionExecutionException extends ProcessException
This exception will be thrown when a action execution is failed.Created: 2008. 01. 07 AM 3:35:55
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionExecutionException()Simple constructor.ActionExecutionException(Executable action, java.lang.Throwable cause)ActionExecutionException(java.lang.String msg)Constructor to create exception with a message.ActionExecutionException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.ActionExecutionException(java.lang.Throwable cause)Constructor to create exception to wrap another exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecutablegetAction()
-
-
-
Constructor Detail
-
ActionExecutionException
public ActionExecutionException()
Simple constructor.
-
ActionExecutionException
public ActionExecutionException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg- a message to associate with the exception
-
ActionExecutionException
public ActionExecutionException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause- the real cause of the exception
-
ActionExecutionException
public ActionExecutionException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg- the detail messagecause- the real cause of the exception
-
ActionExecutionException
public ActionExecutionException(Executable action, java.lang.Throwable cause)
-
-
Method Detail
-
getAction
public Executable getAction()
-
-