org.apache.commons.httpclient.auth
public class: AuthenticationException [javadoc |
source]
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
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidCredentialsException, AuthChallengeException, CredentialsNotAvailableException
Signals a failure in authentication process
- author:
< - a href="mailto:oleg@ural.ru">Oleg Kalnichevski
- since:
2.0 -
| Constructor: |
public AuthenticationException() {
super();
}
Creates a new AuthenticationException with a null detail message. |
public AuthenticationException(String message) {
super(message);
}
Creates a new AuthenticationException with the specified message. Parameters:
message - the exception detail message
|
public AuthenticationException(String message,
Throwable cause) {
super(message, cause);
}
Creates a new AuthenticationException with the specified detail message and cause. Parameters:
message - the exception detail message
cause - the Throwable that caused this exception, or null
if the cause is unavailable, unknown, or not a Throwable
- since:
3.0 -
|
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |