Package javax.mail

Class 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).
    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 java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 message
        e - The embedded exception
        Since:
        JavaMail 1.5