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

edu.vt.middleware.ldap.pool.BlockingTimeoutException Maven / Gradle / Ivy

There is a newer version: 3.3.9
Show newest version
/*
  $Id: BlockingTimeoutException.java 1330 2010-05-23 22:10:53Z dfisher $

  Copyright (C) 2003-2010 Virginia Tech.
  All rights reserved.

  SEE LICENSE FOR MORE INFORMATION

  Author:  Middleware Services
  Email:   [email protected]
  Version: $Revision: 1330 $
  Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap.pool;

/**
 * BlockingTimeoutException is thrown when a blocking operation
 * times out. See {@link BlockingLdapPool#checkOut()}.
 *
 * @author  Middleware Services
 * @version  $Revision: 1330 $
 */
public class BlockingTimeoutException extends LdapPoolException
{

  /** serialVersionUID. */
  private static final long serialVersionUID = -5152940431346111294L;


  /**
   * This creates a new BlockingTimeoutException with the supplied
   * String.
   *
   * @param  msg  String
   */
  public BlockingTimeoutException(final String msg)
  {
    super(msg);
  }


  /**
   * This creates a new BlockingTimeoutException with the supplied
   * Exception.
   *
   * @param  e  Exception
   */
  public BlockingTimeoutException(final Exception e)
  {
    super(e);
  }


  /**
   * This creates a new BlockingTimeoutException with the supplied
   * String and Exception.
   *
   * @param  msg  String
   * @param  e  Exception
   */
  public BlockingTimeoutException(final String msg, final Exception e)
  {
    super(msg, e);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy