- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.helidon.common.context.ExecutorException
-
- All Implemented Interfaces:
Serializable
public class ExecutorException extends RuntimeException
Exception related to execution of a task in context.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutorException(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 Detail
-
ExecutorException
public ExecutorException(String message)
Create exception with a descriptive message.- Parameters:
message
- details about what happened
-
-