public class

InvalidCipherTextException

extends CryptoException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ org.bouncycastle.crypto.CryptoException
         ↳ org.bouncycastle.crypto.InvalidCipherTextException

Class Overview

this exception is thrown whenever we find something we don't expect in a message.

Summary

Public Constructors
InvalidCipherTextException()
base constructor.
InvalidCipherTextException(String message)
create a InvalidCipherTextException with the given message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public InvalidCipherTextException ()

base constructor.

public InvalidCipherTextException (String message)

create a InvalidCipherTextException with the given message.

Parameters
message the message to be carried with the exception.