当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
TaskTimeoutException (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.core.task
Class TaskTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.core.task.TaskRejectedException
org.springframework.core.task.TaskTimeoutException
- All Implemented Interfaces:
- Serializable
public class TaskTimeoutException
- extends TaskRejectedException
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:
AsyncTaskExecutor.execute(Runnable, long)
,
TaskRejectedException
,
Serialized Form
TaskTimeoutException
public TaskTimeoutException(String msg)
- Create a new
TaskTimeoutException
with the specified detail message and no root cause.
- Parameters:
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.
- Parameters:
msg
- the detail messagecause
- the root cause (usually from using an underlying
API such as the java.util.concurrent
package)- See Also:
RejectedExecutionException
Copyright © 2002-2007 The Spring Framework.