org.springframework.core.task
Class TaskRejectedException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           java.lang.RuntimeException
java.lang.RuntimeException
               org.springframework.core.NestedRuntimeException
org.springframework.core.NestedRuntimeException
                   org.springframework.core.task.TaskRejectedException
org.springframework.core.task.TaskRejectedException
- All Implemented Interfaces: 
- Serializable
- Direct Known Subclasses: 
- TaskTimeoutException
- public class TaskRejectedException 
- extends NestedRuntimeException
Exception thrown when a TaskExecutor rejects to accept
 a given task for execution.
- Since:
- 2.0.1
- Author:
- Juergen Hoeller
- See Also:
- TaskExecutor.execute(Runnable),- TaskTimeoutException, 
Serialized Form
 
 
 
 
 
TaskRejectedException
public TaskRejectedException(String msg)
- Create a new TaskRejectedExceptionwith the specified detail message and no root cause.
 
- Parameters:
- msg- the detail message
 
TaskRejectedException
public TaskRejectedException(String msg,
                             Throwable cause)
- Create a new TaskRejectedExceptionwith 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:
- RejectedExecutionException
 
Copyright © 2002-2008 The Spring Framework.