Package org.springframework.core.task
Class TaskRejectedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.util.concurrent.RejectedExecutionException
org.springframework.core.task.TaskRejectedException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- TaskTimeoutException
Exception thrown when a 
TaskExecutor rejects to accept
 a given task for execution.- Since:
- 2.0.1
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreate 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.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TaskRejectedExceptionCreate a newTaskRejectedExceptionwith the specified detail message and no root cause.- Parameters:
- msg- the detail message
 
- 
TaskRejectedExceptionCreate a newTaskRejectedExceptionwith 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.concurrentpackage)
- See Also:
 
- 
TaskRejectedExceptionCreate a newTaskRejectedExceptionwith a default message for the given executor and task.- Parameters:
- executor- the- Executorthat rejected the task
- task- the task object that got rejected
- cause- the original- RejectedExecutionException
- Since:
- 6.1
- See Also:
 
 
-