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

com.github.markusbernhardt.proxy.selector.pac.ProxyEvaluationException Maven / Gradle / Ivy

package com.github.markusbernhardt.proxy.selector.pac;

import com.github.markusbernhardt.proxy.util.ProxyException;

/*****************************************************************************
 * Exception for PAC script errors.
 *
 * @author Markus Bernhardt, Copyright 2016
 * @author Bernd Rosstauscher, Copyright 2009
 ****************************************************************************/

public class ProxyEvaluationException extends ProxyException {

	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