Class TaskTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.util.concurrent.RejectedExecutionException
org.springframework.core.task.TaskRejectedException
org.springframework.core.task.TaskTimeoutException
- All Implemented Interfaces:
- Serializable
Deprecated.
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 SummaryConstructorsConstructorDescriptionDeprecated.Create a newTaskTimeoutExceptionwith the specified detail message and no root cause.TaskTimeoutException(String msg, Throwable cause) Deprecated.Create a newTaskTimeoutExceptionwith the specified detail message and the given root cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TaskTimeoutExceptionDeprecated.Create a newTaskTimeoutExceptionwith the specified detail message and no root cause.- Parameters:
- msg- the detail message
 
- 
TaskTimeoutExceptionDeprecated.Create a newTaskTimeoutExceptionwith 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:
 
 
-