Skip to content

Commit 38ba5d2

Browse files
author
BaierD
committed
Rename exception because of checkstyle
1 parent 4ad6477 commit 38ba5d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/org/sosy_lab/java_smt/solvers/cvc5/CVC5FloatingPointFormulaManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,9 @@ protected Term fromIeeeBitvectorImpl(Term pBitvector, FloatingPointType pTargetT
416416
pTargetType.getExponentSize(),
417417
pTargetType.getMantissaSize() + 1), // add sign bit
418418
pBitvector);
419-
} catch (CVC5ApiException pE) {
419+
} catch (CVC5ApiException pCVC5ApiException) {
420420
// This seems to only be thrown for wrong exponent and mantissa sizes
421-
throw new RuntimeException(pE);
421+
throw new RuntimeException(pCVC5ApiException);
422422
}
423423
}
424424

0 commit comments

Comments
 (0)