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

Fields inherited from class com.ls.BaseException
innerThrowable
 
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.
 
Methods inherited from class com.ls.BaseException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.