Class InvalidCipherTextException

  • All Implemented Interfaces:
    Serializable

    public class InvalidCipherTextException
    extends CryptoException
    this exception is thrown whenever we find something we don't expect in a message.
    See Also:
    Serialized Form
    • Constructor Detail

      • InvalidCipherTextException

        public InvalidCipherTextException()
        base constructor.
      • InvalidCipherTextException

        public InvalidCipherTextException​(String message)
        create a InvalidCipherTextException with the given message.
        Parameters:
        message - the message to be carried with the exception.
      • InvalidCipherTextException

        public InvalidCipherTextException​(String message,
                                          Throwable cause)
        create a InvalidCipherTextException with the given message.
        Parameters:
        message - the message to be carried with the exception.
        cause - the root cause of the exception.