Class CredentialsNotAvailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.httpclient.HttpException
org.apache.commons.httpclient.ProtocolException
org.apache.commons.httpclient.auth.AuthenticationException
org.apache.commons.httpclient.auth.CredentialsNotAvailableException
- All Implemented Interfaces:
Serializable
Authentication credentials required to respond to a authentication
challenge are not available
- Since:
- 3.0
- Author:
- Oleg Kalnichevski
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new CredentialsNotAvailableException with a null detail message.CredentialsNotAvailableException(String message) Creates a new CredentialsNotAvailableException with the specified message.CredentialsNotAvailableException(String message, Throwable cause) Creates a new CredentialsNotAvailableException with the specified detail message and cause. -
Method Summary
Methods inherited from class HttpException
getCause, getReason, getReasonCode, printStackTrace, printStackTrace, printStackTrace, setReason, setReasonCodeMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
CredentialsNotAvailableException
public CredentialsNotAvailableException()Creates a new CredentialsNotAvailableException with a null detail message. -
CredentialsNotAvailableException
Creates a new CredentialsNotAvailableException with the specified message.- Parameters:
message- the exception detail message
-
CredentialsNotAvailableException
Creates a new CredentialsNotAvailableException 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
-