Package org.ldaptive.pool
Class PoolException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ldaptive.LdapException
-
- org.ldaptive.pool.PoolException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ActivationException
,BlockingTimeoutException
,PoolExhaustedException
,ValidationException
public class PoolException extends LdapException
Base exception thrown when a pool operation fails.- Author:
- Middleware Services
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PoolException(java.lang.Exception e)
Creates a new pool exception.PoolException(java.lang.String msg)
Creates a new pool exception.PoolException(java.lang.String msg, java.lang.Exception e)
Creates a new pool exception.
-
Method Summary
-
Methods inherited from class org.ldaptive.LdapException
formatResult, getResultCode
-
-
-
-
Constructor Detail
-
PoolException
public PoolException(java.lang.String msg)
Creates a new pool exception.- Parameters:
msg
- describing this exception
-
PoolException
public PoolException(java.lang.Exception e)
Creates a new pool exception.- Parameters:
e
- pooling specific exception
-
PoolException
public PoolException(java.lang.String msg, java.lang.Exception e)
Creates a new pool exception.- Parameters:
msg
- describing this exceptione
- pooling specific exception
-
-