mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 21:07:57 +01:00
Add KeyCannotSign(message) constructor
This commit is contained in:
parent
eefb445916
commit
0c24c2301d
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue