mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-11 02:35:59 +01:00
Properly match MissingArg exception code
This commit is contained in:
parent
ec90d2e951
commit
ce21e07fc2
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ class SOPExceptionExitCodeMapper : IExitCodeExceptionMapper {
|
|||
// Unmatched subcommand
|
||||
SOPGPException.UnsupportedSubcommand.EXIT_CODE
|
||||
}
|
||||
} else if (exception is MissingParameterException) {
|
||||
SOPGPException.MissingArg.EXIT_CODE
|
||||
} else if (exception is ParameterException) {
|
||||
// Invalid option (e.g. `--as invalid`)
|
||||
SOPGPException.UnsupportedOption.EXIT_CODE
|
||||
|
|
Loading…
Reference in a new issue