Skip to content

Commit

Permalink
catch any throwable when instantiating solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamZsofi committed Jul 24, 2024
1 parent 0a07c83 commit a10bd48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fun getBoundedChecker(xcfa: XCFA, mcm: MCM,
private fun tryGetSolver(name: String, validate: Boolean): SolverFactory? {
try {
return getSolver(name, validate)
} catch (e: SmtLibSolverInstallerException) {
} catch (e: Throwable) {
return null
}
}
Expand Down

0 comments on commit a10bd48

Please sign in to comment.