01: package org.bouncycastle.openpgp;
02:
03: /**
04: * Thrown if the iv at the start of a data stream indicates the wrong key
05: * is being used.
06: */
07: public class PGPDataValidationException extends PGPException {
08: /**
09: * @param message
10: */
11: public PGPDataValidationException(String message) {
12: super(message);
13: }
14: }
|