01: package org.bouncycastle.openpgp; 02: 03: /** 04: * Thrown if the key checksum is invalid. 05: */ 06: public class PGPKeyValidationException extends PGPException { 07: /** 08: * @param message 09: */ 10: public PGPKeyValidationException(String message) { 11: super(message); 12: } 13: }