Add KeyCannotSign(message) constructor

This commit is contained in:
Paul Schaub 2022-06-10 16:55:53 +02:00
parent eefb445916
commit 0c24c2301d
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 4 additions and 0 deletions

View File

@ -323,6 +323,10 @@ public abstract class SOPGPException extends RuntimeException {
super();
}
public KeyCannotSign(String message) {
super(message);
}
public KeyCannotSign(String s, Throwable throwable) {
super(s, throwable);
}