类 TaskRejectedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.util.concurrent.RejectedExecutionException
cn.taketoday.core.task.TaskRejectedException
- 所有已实现的接口:
Serializable
- 直接已知子类:
TaskTimeoutException
Exception thrown when a
TaskExecutor rejects to accept
a given task for execution.- 从以下版本开始:
- 4.0
- 作者:
- Juergen Hoeller, Harry Yang
- 另请参阅:
-
构造器概要
构造器构造器说明Create a newTaskRejectedExceptionwith the specified detail message and no root cause.TaskRejectedException(String msg, Throwable cause) Create a newTaskRejectedExceptionwith the specified detail message and the given root cause.TaskRejectedException(Executor executor, Object task, RejectedExecutionException cause) Create a newTaskRejectedExceptionwith a default message for the given executor and task. -
方法概要
-
构造器详细资料
-
TaskRejectedException
Create a newTaskRejectedExceptionwith the specified detail message and no root cause.- 参数:
msg- the detail message
-
TaskRejectedException
Create a newTaskRejectedExceptionwith the specified detail message and the given root cause.- 参数:
msg- the detail messagecause- the root cause (usually from using an underlying API such as thejava.util.concurrentpackage)- 另请参阅:
-
TaskRejectedException
Create a newTaskRejectedExceptionwith a default message for the given executor and task.- 参数:
executor- theExecutorthat rejected the tasktask- the task object that got rejectedcause- the originalRejectedExecutionException- 另请参阅:
-
-
方法详细资料
-
executorDescription
-