Class LogonException

  • All Implemented Interfaces:
    java.io.Serializable

    public class LogonException
    extends AbstractRuntimeException
    Thrown when logon attempt fails due to configuration or credential errors.
    Since:
    2.1
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      LogonException​(java.lang.String message)
      Constructs a LogonException with the specified message.
      LogonException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a LogonException with the specified message and root cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

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

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • LogonException

        public LogonException​(java.lang.String message)
        Constructs a LogonException with the specified message.
        Parameters:
        message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
      • LogonException

        public LogonException​(java.lang.String message,
                              java.lang.Throwable cause)
        Constructs a LogonException with the specified message and root cause.
        Parameters:
        message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)