mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-25 16:42:07 +01:00
Add back missing exception constructor
This commit is contained in:
parent
a63b29fe80
commit
3eb2503852
1 changed files with 4 additions and 0 deletions
|
@ -93,6 +93,10 @@ public abstract class SOPGPException extends RuntimeException {
|
|||
|
||||
public static final int EXIT_CODE = 19;
|
||||
|
||||
public MissingArg() {
|
||||
|
||||
}
|
||||
|
||||
public MissingArg(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue