01: package org.bouncycastle.crypto;
02:
03: /**
04: * the foundation class for the hard exceptions thrown by the crypto packages.
05: */
06: public class CryptoException extends Exception {
07: /**
08: * base constructor.
09: */
10: public CryptoException() {
11: }
12:
13: /**
14: * create a CryptoException with the given message.
15: *
16: * @param message the message to be carried with the exception.
17: */
18: public CryptoException(String message) {
19: super(message);
20: }
21: }
|