java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.common.context.ExecutorException
- All Implemented Interfaces:
Serializable
Exception related to execution of a task in context.
- See Also:
-
Constructor Summary
ConstructorDescriptionExecutorException
(String message) Create exception with a descriptive message.ExecutorException
(String message, Throwable cause) Create exception with a descriptive message and a 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
-
ExecutorException
Create exception with a descriptive message.- Parameters:
message
- details about what happened
-
ExecutorException
Create exception with a descriptive message and a cause.- Parameters:
message
- details about what happenedcause
- original exception caught
-