All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ldaptive.pool.PoolException Maven / Gradle / Ivy

The newest version!
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.pool;

import org.ldaptive.LdapException;

/**
 * Base exception thrown when a pool operation fails.
 *
 * @author  Middleware Services
 */
public class PoolException extends LdapException
{

  /** serialVersionUID. */
  private static final long serialVersionUID = 6320399208563015506L;


  /**
   * Creates a new pool exception.
   *
   * @param  msg  describing this exception
   */
  public PoolException(final String msg)
  {
    super(msg);
  }


  /**
   * Creates a new pool exception.
   *
   * @param  e  pooling specific exception
   */
  public PoolException(final Exception e)
  {
    super(e);
  }


  /**
   * Creates a new pool exception.
   *
   * @param  msg  describing this exception
   * @param  e  pooling specific exception
   */
  public PoolException(final String msg, final Exception e)
  {
    super(msg, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy