Skip to content

Commit b832ae2

Browse files
committed
fix CheckStyle warning
1 parent 4f81e8d commit b832ae2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/org/sosy_lab/java_smt/solvers/princess/PrincessAbstractProver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ protected PrincessModel getEvaluatorWithoutChecks() throws SolverException {
188188
private <T> T callOrThrow(Callable<T> callable) throws SolverException {
189189
try {
190190
return callable.call();
191-
} catch (Exception pException) { // mainly for catching SimpleAPIException
192-
throw new SolverException(pException.getMessage(), pException);
191+
} catch (Exception ex) { // mainly for catching SimpleAPIException
192+
throw new SolverException(ex.getMessage(), ex);
193193
}
194194
}
195195

0 commit comments

Comments
 (0)