Package org.ldaptive.pool
Class PoolExhaustedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ldaptive.LdapException
-
- org.ldaptive.pool.PoolException
-
- org.ldaptive.pool.PoolExhaustedException
-
- All Implemented Interfaces:
java.io.Serializable
public class PoolExhaustedException extends PoolException
Thrown when the pool is empty and no new requests can be serviced.- Author:
- Middleware Services
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PoolExhaustedException(java.lang.Exception e)
Creates a new pool exhausted exception.PoolExhaustedException(java.lang.String msg)
Creates a new pool exhausted exception.PoolExhaustedException(java.lang.String msg, java.lang.Exception e)
Creates a new pool exhausted exception.
-
Method Summary
-
Methods inherited from class org.ldaptive.LdapException
formatResult, getResultCode
-
-
-
-
Constructor Detail
-
PoolExhaustedException
public PoolExhaustedException(java.lang.String msg)
Creates a new pool exhausted exception.- Parameters:
msg
- describing this exception
-
PoolExhaustedException
public PoolExhaustedException(java.lang.Exception e)
Creates a new pool exhausted exception.- Parameters:
e
- pooling specific exception
-
PoolExhaustedException
public PoolExhaustedException(java.lang.String msg, java.lang.Exception e)
Creates a new pool exhausted exception.- Parameters:
msg
- describing this exceptione
- pooling specific exception
-
-