- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.mail.MessagingException
-
- javax.mail.AuthenticationFailedException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ReferralException
public class AuthenticationFailedException extends MessagingException
This exception is thrown when the connect method on a Store or Transport object fails due to an authentication failure (e.g., bad user name or password).- Author:
- Bill Shannon
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationFailedException()
Constructs an AuthenticationFailedException.AuthenticationFailedException(java.lang.String message)
Constructs an AuthenticationFailedException with the specified detail message.AuthenticationFailedException(java.lang.String message, java.lang.Exception e)
Constructs an AuthenticationFailedException with the specified detail message and embedded exception.
-
Method Summary
-
Methods inherited from class javax.mail.MessagingException
getCause, getNextException, setNextException, toString
-
-
-
-
Constructor Detail
-
AuthenticationFailedException
public AuthenticationFailedException()
Constructs an AuthenticationFailedException.
-
AuthenticationFailedException
public AuthenticationFailedException(java.lang.String message)
Constructs an AuthenticationFailedException with the specified detail message.- Parameters:
message
- The detailed error message
-
AuthenticationFailedException
public AuthenticationFailedException(java.lang.String message, java.lang.Exception e)
Constructs an AuthenticationFailedException with the specified detail message and embedded exception. The exception is chained to this exception.- Parameters:
message
- The detailed error messagee
- The embedded exception- Since:
- JavaMail 1.5
-
-