Class AuthException



  • public class AuthException
    extends javax.security.auth.login.LoginException
    A generic authentication exception.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      AuthException​()
      Constructs an AuthException with no detail message.
      AuthException​(java.lang.String msg)
      Constructs an AuthException with the specified detail message.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • AuthException

        public AuthException​()
        Constructs an AuthException with no detail message. A detail message is a String that describes this particular exception.
      • AuthException

        public AuthException​(java.lang.String msg)
        Constructs an AuthException with the specified detail message. A detail message is a String that describes this particular exception.

        Parameters:
        msg - The detail message.