Add back missing exception constructor

This commit is contained in:
Paul Schaub 2023-01-09 19:53:18 +01:00
parent a63b29fe80
commit 3eb2503852
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}