com.ls
Class TimeoutException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ls.BaseException
|
+--com.ls.TimeoutException
- All Implemented Interfaces:
- Serializable
- public class TimeoutException
- extends BaseException
This exception is raised in case some task could not be performed within a defined timeframe.
- Version:
- $Revision: 1.1 $
- Author:
- Last modified by $Author: TMahler $
- See Also:
- Serialized Form
Constructor Summary |
TimeoutException()
Constructs a new TimeoutException with a default description. |
TimeoutException(String description)
Constructs a TimeoutException with the specified detail message. |
TimeoutException(String description,
Throwable throwable)
Constructs a TimeoutException with the specified
detail message and nested exception. |
TimeoutException
public TimeoutException()
- Constructs a new TimeoutException with a default description.
TimeoutException
public TimeoutException(String description)
- Constructs a TimeoutException with the specified detail message.
- Parameters:
description
- The detail message.
TimeoutException
public TimeoutException(String description,
Throwable throwable)
- Constructs a TimeoutException with the specified
detail message and nested exception.
- Parameters:
description
- The detail message.throwable
- The nested exception.