Class ProcessException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.activity.ActivityException
-
- com.aspectran.core.activity.process.ProcessException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ActionExecutionException
,MethodArgumentTypeMismatchException
,ParameterBindingException
public class ProcessException extends ActivityException
This exception will be thrown if the translet processing fails.Created: 2008. 01. 07 AM 3:35:55
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessException(java.lang.String msg)
Constructor to create exception with a message.ProcessException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.
-
-
-
Constructor Detail
-
ProcessException
public ProcessException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
ProcessException
public ProcessException(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
-
-