Class PasswordEncryptException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PasswordEncryptException
    extends java.lang.Exception
    Exception thrown when an error occurred while encrypting the data.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      PasswordEncryptException()
      Constructs an PasswordEncryptException with no message.
      PasswordEncryptException​(java.lang.Exception cause)
      Constructs an PasswordEncryptException with the specified cause.
      PasswordEncryptException​(java.lang.String message)
      Constructs an PasswordEncryptException with the specified message.
      PasswordEncryptException​(java.lang.String message, java.lang.Exception cause)
      Constructs an PasswordEncryptException with the specified message and cause.
    • 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

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

      • PasswordEncryptException

        public PasswordEncryptException()
        Constructs an PasswordEncryptException with no message.
      • PasswordEncryptException

        public PasswordEncryptException​(java.lang.String message)
        Constructs an PasswordEncryptException with the specified message.
        Parameters:
        message - the detail message.
      • PasswordEncryptException

        public PasswordEncryptException​(java.lang.Exception cause)
        Constructs an PasswordEncryptException with the specified cause.
        Parameters:
        cause - the cause.
      • PasswordEncryptException

        public PasswordEncryptException​(java.lang.String message,
                                        java.lang.Exception cause)
        Constructs an PasswordEncryptException with the specified message and cause.
        Parameters:
        message - the detail message.
        cause - the cause.