Class ProxyDetectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.httpclient.contrib.proxy.ProxyDetectionException
-
- All Implemented Interfaces:
Serializable
public class ProxyDetectionException extends Exception
Signals a problem with auto-detecting the proxy information using the java plugin.DISCLAIMER: HttpClient developers DO NOT actively support this component. The component is provided as a reference material, which may be inappropriate for use without additional customization.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyDetectionException()
Creates a new ProxyDetectionException with a null detail message.ProxyDetectionException(String message)
Creates a new ProxyDetectionException with the specified detail message.ProxyDetectionException(String message, Throwable cause)
Creates a new ProxyDetectionException with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ProxyDetectionException
public ProxyDetectionException()
Creates a new ProxyDetectionException with a null detail message.
-
ProxyDetectionException
public ProxyDetectionException(String message)
Creates a new ProxyDetectionException with the specified detail message.- Parameters:
message
- The exception detail message
-
ProxyDetectionException
public ProxyDetectionException(String message, Throwable cause)
Creates a new ProxyDetectionException with the specified detail message and cause.- Parameters:
message
- the exception detail messagecause
- the Throwable that caused this exception, or null if the cause is unavailable, unknown, or not a Throwable
-
-