Class TaskTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hawaiiframework.exception.HawaiiException
org.hawaiiframework.async.exception.TaskTimeoutException
- All Implemented Interfaces:
Serializable
public class TaskTimeoutException
extends org.hawaiiframework.exception.HawaiiException
Exception thrown when a task has been timed-out.
- Since:
- 2.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newTaskTimeoutException.TaskTimeoutException(String message) Constructs a newTaskTimeoutExceptionwith the suppliedmessage.TaskTimeoutException(String message, Throwable cause) Constructs a newTaskTimeoutExceptionwith the suppliedmessageandcause.TaskTimeoutException(Throwable cause) Constructs a newTaskTimeoutExceptionwith the suppliedcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TaskTimeoutException
public TaskTimeoutException()Constructs a newTaskTimeoutException. -
TaskTimeoutException
Constructs a newTaskTimeoutExceptionwith the suppliedmessage.- Parameters:
message- The exception message.
-
TaskTimeoutException
Constructs a newTaskTimeoutExceptionwith the suppliedmessageandcause.- Parameters:
message- The exception message.cause- The exception cause.
-
TaskTimeoutException
Constructs a newTaskTimeoutExceptionwith the suppliedcause.- Parameters:
cause- The cause.
-