java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.smallrye.common.process.AbstractExecutionException
io.smallrye.common.process.ProcessHandlerException
- All Implemented Interfaces:
Serializable
An exception indicating a problem in one of the handler callbacks for the execution of a process.
The cause of the problem will typically be recorded as the cause of this exception.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newProcessHandlerExceptioninstance.Constructs a newProcessHandlerExceptioninstance with an initial message.ProcessHandlerException(String msg, Throwable cause) Constructs a newProcessHandlerExceptioninstance with an initial message and cause.ProcessHandlerException(Throwable cause) Constructs a newProcessHandlerExceptioninstance with an initial cause. -
Method Summary
Methods inherited from class io.smallrye.common.process.AbstractExecutionException
getMessage, getMessageMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ProcessHandlerException
public ProcessHandlerException()Constructs a newProcessHandlerExceptioninstance. The message is left blank (null), and no cause is specified. -
ProcessHandlerException
Constructs a newProcessHandlerExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
ProcessHandlerException
Constructs a newProcessHandlerExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisProcessHandlerException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
ProcessHandlerException
Constructs a newProcessHandlerExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-