01: package org.bouncycastle.crypto;
02:
03: /**
04: * this exception is thrown whenever we find something we don't expect in a
05: * message.
06: */
07: public class InvalidCipherTextException extends CryptoException {
08: /**
09: * base constructor.
10: */
11: public InvalidCipherTextException() {
12: }
13:
14: /**
15: * create a InvalidCipherTextException with the given message.
16: *
17: * @param message the message to be carried with the exception.
18: */
19: public InvalidCipherTextException(String message) {
20: super(message);
21: }
22: }
|