Class CredentialsAgentException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CredentialsAgentException
    extends java.lang.Exception
    Exception thrown for errors while handling credentials.

    Missing credentials and discarded password dialog are not considered an error. At time of writing, methods return null in this case.

    See Also:
    CredentialsAgent, Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      CredentialsAgentException​(java.lang.String message)
      Constructs a new CredentialsAgentException.
      CredentialsAgentException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new CredentialsAgentException.
      CredentialsAgentException​(java.lang.Throwable cause)
      Constructs a new CredentialsAgentException.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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

      • CredentialsAgentException

        public CredentialsAgentException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructs a new CredentialsAgentException.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).
      • CredentialsAgentException

        public CredentialsAgentException​(java.lang.String message)
        Constructs a new CredentialsAgentException.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      • CredentialsAgentException

        public CredentialsAgentException​(java.lang.Throwable cause)
        Constructs a new CredentialsAgentException.
        Parameters:
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).