Class TaskTimeoutException

All Implemented Interfaces:
Serializable

@Deprecated public class TaskTimeoutException extends TaskRejectedException
Deprecated.
as of 5.3.16 since the common executors do not support start timeouts
Exception thrown when a AsyncTaskExecutor rejects to accept a given task for execution because of the specified timeout.
Since:
2.0.3
Author:
Juergen Hoeller
See Also:
  • Constructor Details

    • TaskTimeoutException

      public TaskTimeoutException(String msg)
      Deprecated.
      Create a new TaskTimeoutException with the specified detail message and no root cause.
      Parameters:
      msg - the detail message
    • TaskTimeoutException

      public TaskTimeoutException(String msg, Throwable cause)
      Deprecated.
      Create a new TaskTimeoutException with the specified detail message and the given root cause.
      Parameters:
      msg - the detail message
      cause - the root cause (usually from using an underlying API such as the java.util.concurrent package)
      See Also: