Class ProxyEvaluationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.github.markusbernhardt.proxy.util.ProxyException
-
- com.github.markusbernhardt.proxy.selector.pac.ProxyEvaluationException
-
- All Implemented Interfaces:
Serializable
public class ProxyEvaluationException extends ProxyException
Exception for PAC script errors.- Author:
- Markus Bernhardt, Copyright 2016, Bernd Rosstauscher, Copyright 2009
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyEvaluationException()ConstructorProxyEvaluationException(String message)ConstructorProxyEvaluationException(String message, Throwable cause)ConstructorProxyEvaluationException(Throwable cause)Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ProxyEvaluationException
public ProxyEvaluationException()
Constructor
-
ProxyEvaluationException
public ProxyEvaluationException(String message, Throwable cause)
Constructor- Parameters:
message- the error message.cause- the causing exception for exception chaining.
-
ProxyEvaluationException
public ProxyEvaluationException(String message)
Constructor- Parameters:
message- the error message.
-
ProxyEvaluationException
public ProxyEvaluationException(Throwable cause)
Constructor- Parameters:
cause- the causing exception for exception chaining.
-
-