We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f81e8d commit b832ae2Copy full SHA for b832ae2
src/org/sosy_lab/java_smt/solvers/princess/PrincessAbstractProver.java
@@ -188,8 +188,8 @@ protected PrincessModel getEvaluatorWithoutChecks() throws SolverException {
188
private <T> T callOrThrow(Callable<T> callable) throws SolverException {
189
try {
190
return callable.call();
191
- } catch (Exception pException) { // mainly for catching SimpleAPIException
192
- throw new SolverException(pException.getMessage(), pException);
+ } catch (Exception ex) { // mainly for catching SimpleAPIException
+ throw new SolverException(ex.getMessage(), ex);
193
}
194
195
0 commit comments