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 Details

    • TaskTimeoutException

      public TaskTimeoutException()
      Constructs a new TaskTimeoutException.
    • TaskTimeoutException

      public TaskTimeoutException(String message)
      Constructs a new TaskTimeoutException with the supplied message.
      Parameters:
      message - The exception message.
    • TaskTimeoutException

      public TaskTimeoutException(String message, Throwable cause)
      Constructs a new TaskTimeoutException with the supplied message and cause.
      Parameters:
      message - The exception message.
      cause - The exception cause.
    • TaskTimeoutException

      public TaskTimeoutException(Throwable cause)
      Constructs a new TaskTimeoutException with the supplied cause.
      Parameters:
      cause - The cause.