Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Implements PR #103 - "Remove e.printStackTrace()"
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Jan 18, 2022
1 parent 1af58e8 commit fdffd4a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ void end() {

run(this, fileExtension, lines);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException("Error running inline script, caused by " + e.getClass().getName() + ": " + e.getMessage());
throw new RuntimeException("Error running inline script, caused by " + e.getClass().getName() + ": " + e.getMessage(), e);
}
}

Expand Down

0 comments on commit fdffd4a

Please sign in to comment.