Package org.bouncycastle.crypto
Class MaxBytesExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.bouncycastle.crypto.RuntimeCryptoException
-
- org.bouncycastle.crypto.MaxBytesExceededException
-
- All Implemented Interfaces:
Serializable
public class MaxBytesExceededException extends RuntimeCryptoException
this exception is thrown whenever a cipher requires a change of key, iv or similar after x amount of bytes enciphered- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MaxBytesExceededException()
base constructor.MaxBytesExceededException(String message)
create an with the given message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MaxBytesExceededException
public MaxBytesExceededException()
base constructor.
-
MaxBytesExceededException
public MaxBytesExceededException(String message)
create an with the given message.- Parameters:
message
- the message to be carried with the exception.
-
-