Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Reporters Command should abort when no connection is possible
  • Loading branch information
pesse committed Feb 14, 2019
commit 2578f8ab5fe404c6f98ad5ee44e30d86f02b27b9
1 change: 1 addition & 0 deletions src/main/java/org/utplsql/cli/ReportersCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public int run() {
}
catch ( DatabaseNotCompatibleException | UtPLSQLNotInstalledException | DatabaseConnectionFailed | IllegalArgumentException e ) {
System.out.println(e.getMessage());
return 1;
}
catch (Exception e) {
e.printStackTrace();
Expand Down