类 TaskTimeoutException

所有已实现的接口:
Serializable

public class TaskTimeoutException extends TaskRejectedException
Exception thrown when a AsyncTaskExecutor rejects to accept a given task for execution because of the specified timeout.
从以下版本开始:
4.0
作者:
Juergen Hoeller
另请参阅:
  • 构造器详细资料

    • TaskTimeoutException

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

      public TaskTimeoutException(String msg, Throwable cause)
      Create a new TaskTimeoutException with the specified detail message and the given root cause.
      参数:
      msg - the detail message
      cause - the root cause (usually from using an underlying API such as the java.util.concurrent package)
      另请参阅: