1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-12-23 11:27:57 +01:00

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

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 static class UnacceptableEncryptionKeyException extends KeyException {
public UnacceptableEncryptionKeyException(@Nonnull OpenPgpFingerprint fingerprint) { public UnacceptableEncryptionKeyException(@Nonnull OpenPgpFingerprint fingerprint) {