Skip to content

Commit

Permalink
Merge pull request #651 from fortify/develop
Browse files Browse the repository at this point in the history
fix: `fcli sc-sast scan start`: Output root exception if error occurs while determining .NET version
  • Loading branch information
rsenden authored Dec 5, 2024
2 parents c9c1d60 + 0bb7260 commit 256f120
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private void setDotNetProperties(File packageFile) {
.findFirst()
.ifPresent(this::setDotNetProperties);
} catch (IOException e) {
throw new IllegalStateException("Unable to determine .NET version (if applicable) from package file");
throw new IllegalStateException("Unable to determine .NET version (if applicable) from package file", e);
}
}

Expand Down

0 comments on commit 256f120

Please sign in to comment.