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 HawaiiException
Exception thrown when a task has been timed-out.- Since:
- 2.0.0
- Author:
- Rutger Lubbers
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TaskTimeoutException()
Constructs a newTaskTimeoutException
.TaskTimeoutException(String message)
Constructs a newTaskTimeoutException
with the suppliedmessage
.TaskTimeoutException(String message, Throwable cause)
Constructs a newTaskTimeoutException
with the suppliedmessage
andcause
.TaskTimeoutException(Throwable cause)
Constructs a newTaskTimeoutException
with 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 Detail
-
TaskTimeoutException
public TaskTimeoutException()
Constructs a newTaskTimeoutException
.
-
TaskTimeoutException
public TaskTimeoutException(String message)
Constructs a newTaskTimeoutException
with the suppliedmessage
.
-
TaskTimeoutException
public TaskTimeoutException(String message, Throwable cause)
Constructs a newTaskTimeoutException
with the suppliedmessage
andcause
.
-
TaskTimeoutException
public TaskTimeoutException(Throwable cause)
Constructs a newTaskTimeoutException
with the suppliedcause
.
-
-