Skip to content

Commit

Permalink
Add error handler in ThetaVerifier
Browse files Browse the repository at this point in the history
  • Loading branch information
grbeni committed Sep 13, 2020
1 parent a3d9575 commit 4d9220e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ class ThetaVerifier extends AbstractVerifier {
else if (line.contains(UNSAFE)) {
super.result = ThreeStateBoolean.FALSE
}
else {
// Some kind of error
throw new IllegalArgumentException(line)
}
// Adapting result
super.result = super.result.adaptResult
if (!traceFile.exists) {
Expand Down

0 comments on commit 4d9220e

Please sign in to comment.