Class KeystoreManagerException

  • All Implemented Interfaces:
    Serializable

    public class KeystoreManagerException
    extends RuntimeException
    Represents an exception from an operation using the KeyStoreManager class.
    Since:
    2.0.0
    See Also:
    Serialized Form
    • Constructor Detail

      • KeystoreManagerException

        public KeystoreManagerException​(String message)
        Constructs a new KeystoreManagerException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
        Parameters:
        message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      • KeystoreManagerException

        public KeystoreManagerException​(String message,
                                        Throwable cause)
        Constructs a new KeystoreManagerException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
        Parameters:
        message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
        cause - The Throwable that caused the exception.
      • KeystoreManagerException

        public KeystoreManagerException​(Throwable t)
        Constructs a new KeyStoreManagerException with the specified throwable.
        Parameters:
        t - The cause of the Exception.