mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-09 18:29:39 +02:00
SOP commands: Throw UnsupportedSubcommand error when sop.command() returns null
This commit is contained in:
parent
1c2cbf0e75
commit
1aca7112d2
12 changed files with 127 additions and 10 deletions
|
@ -52,10 +52,6 @@ public abstract class SOPGPException extends RuntimeException {
|
|||
super(message, e);
|
||||
}
|
||||
|
||||
public UnsupportedAsymmetricAlgo(Throwable e) {
|
||||
super(e);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getExitCode() {
|
||||
return EXIT_CODE;
|
||||
|
@ -308,10 +304,6 @@ public abstract class SOPGPException extends RuntimeException {
|
|||
super();
|
||||
}
|
||||
|
||||
public KeyCannotSign(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public KeyCannotSign(String s, KeyCannotSign keyCannotSign) {
|
||||
super(s, keyCannotSign);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue