Skip to content

Commit

Permalink
Fix error handling
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Aug 12, 2023
1 parent a212bb3 commit 851e8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/io/seqera/wavelit/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ else if( result.isVersionHelpRequested() ) {
app.run();
}
}
catch (IllegalCliArgumentException e) {
catch (IllegalCliArgumentException | CommandLine.ParameterException e) {
System.err.println(e.getMessage());
System.exit(1);
}
Expand Down

0 comments on commit 851e8f6

Please sign in to comment.