/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.pool;
/**
* Thrown when the pool is empty and no new requests can be serviced.
*
* @author Middleware Services
*/
public class PoolExhaustedException extends PoolException
{
/** serialVersionUID. */
private static final long serialVersionUID = -2092251274513447389L;
/**
* Creates a new pool exhausted exception.
*
* @param msg describing this exception
*/
public PoolExhaustedException(final String msg)
{
super(msg);
}
/**
* Creates a new pool exhausted exception.
*
* @param e pooling specific exception
*/
public PoolExhaustedException(final Exception e)
{
super(e);
}
/**
* Creates a new pool exhausted exception.
*
* @param msg describing this exception
* @param e pooling specific exception
*/
public PoolExhaustedException(final String msg, final Exception e)
{
super(msg, e);
}
}