com.ls.util
Class PoolObjectNotAvailableException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ls.BaseException
                    |
                    +--com.ls.util.PoolObjectNotAvailableException
All Implemented Interfaces:
Serializable

public class PoolObjectNotAvailableException
extends BaseException

Exception to identify that there is no more pool object available.

Version:
$Revision: 1.1 $
Author:
Last modified by $Author: MFehrenbach $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
PoolObjectNotAvailableException()
          Creates a PoolObjectNotAvailableException with no specified detail message.
PoolObjectNotAvailableException(String description)
          Creates a PoolObjectNotAvailableException with the specified detail message.
PoolObjectNotAvailableException(String description, Throwable throwable)
          Creates a PoolObjectNotAvailableException 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

PoolObjectNotAvailableException

public PoolObjectNotAvailableException()
Creates a PoolObjectNotAvailableException with no specified detail message.

PoolObjectNotAvailableException

public PoolObjectNotAvailableException(String description)
Creates a PoolObjectNotAvailableException with the specified detail message.
Parameters:
description - The detail message.

PoolObjectNotAvailableException

public PoolObjectNotAvailableException(String description,
                                       Throwable throwable)
Creates a PoolObjectNotAvailableException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.