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 SummaryConstructorsConstructorDescriptionExecutorException(String message) Create exception with a descriptive message.ExecutorException(String message, Throwable cause) Create exception with a descriptive message and a cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ExecutorExceptionCreate exception with a descriptive message.- Parameters:
- message- details about what happened
 
- 
ExecutorExceptionCreate exception with a descriptive message and a cause.- Parameters:
- message- details about what happened
- cause- original exception caught
 
 
-