Class DispatchingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.devmix.process.acto.exceptions.DispatchingException
- All Implemented Interfaces:
Serializable
Represents an exception that occurs during the dispatching process of an active object.
- Author:
- Sergey Grachev
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDispatchingException(String message) Constructs a newDispatchingExceptionwith the specified detail message.DispatchingException(String message, Throwable cause) Constructs a newDispatchingExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DispatchingException
Constructs a newDispatchingExceptionwith the specified detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
DispatchingException
Constructs a newDispatchingExceptionwith the specified detail message and cause.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
-