Add RevokedKeyException

This commit is contained in:
Paul Schaub 2022-05-07 14:12:18 +02:00
parent 3e7e6df3f9
commit 374e6452f0
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,13 @@ public abstract class KeyException extends RuntimeException {
}
}
public static class RevokedKeyException extends KeyException {
public RevokedKeyException(@Nonnull OpenPgpFingerprint fingerprint) {
super("Key " + fingerprint + " appears to be revoked.", fingerprint);
}
}
public static class UnacceptableEncryptionKeyException extends KeyException {
public UnacceptableEncryptionKeyException(@Nonnull OpenPgpFingerprint fingerprint) {