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

com.btr.proxy.selector.pac.ProxyEvaluationException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.btr.proxy.selector.pac;

import java.io.IOException;

/*****************************************************************************
 * Exception for PAC script errors.
 *
 * @author Bernd Rosstauscher ([email protected]) Copyright 2009
 ****************************************************************************/

public class ProxyEvaluationException extends IOException {

  private static final long serialVersionUID = 1L;

  /*************************************************************************
   * Constructor
   ************************************************************************/

  public ProxyEvaluationException() {
    super();
  }

  /*************************************************************************
   * Constructor
   *
   * @param message
   *          the error message.
   * @param cause
   *          the causing exception for exception chaining.
   ************************************************************************/

  public ProxyEvaluationException(String message, Throwable cause) {
    super(message, cause);
  }

  /*************************************************************************
   * Constructor
   *
   * @param message
   *          the error message.
   ************************************************************************/

  public ProxyEvaluationException(String message) {
    super(message);
  }

  /*************************************************************************
   * Constructor
   *
   * @param cause
   *          the causing exception for exception chaining.
   ************************************************************************/

  public ProxyEvaluationException(Throwable cause) {
    super(cause);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy