Package org.ldaptive.pool
Class BlockingTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ldaptive.LdapException
-
- org.ldaptive.pool.PoolException
-
- org.ldaptive.pool.BlockingTimeoutException
-
- All Implemented Interfaces:
Serializable
public class BlockingTimeoutException extends PoolException
Thrown when a blocking operation times out. SeeConnectionPool.getConnection()
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
serialVersionUID.
-
Constructor Summary
Constructors Constructor Description BlockingTimeoutException(Exception e)
Creates a new blocking timeout exception.BlockingTimeoutException(String msg)
Creates a new blocking timeout exception.BlockingTimeoutException(String msg, Exception e)
Creates a new blocking timeout exception.
-
Method Summary
-
Methods inherited from class org.ldaptive.LdapException
formatResult, getResultCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
serialVersionUID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BlockingTimeoutException
public BlockingTimeoutException(String msg)
Creates a new blocking timeout exception.- Parameters:
msg
- describing this exception
-
BlockingTimeoutException
public BlockingTimeoutException(Exception e)
Creates a new blocking timeout exception.- Parameters:
e
- pooling specific exception
-
-