summaryrefslogtreecommitdiff
path: root/src/smt/smt_options_template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_options_template.cpp')
-rw-r--r--src/smt/smt_options_template.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smt/smt_options_template.cpp b/src/smt/smt_options_template.cpp
index b254a3b30..1af029f17 100644
--- a/src/smt/smt_options_template.cpp
+++ b/src/smt/smt_options_template.cpp
@@ -52,7 +52,7 @@ void SmtEngine::setOption(const std::string& key, const CVC4::SExpr& value)
#line 54 "${template}"
- throw UnrecognizedOptionException();
+ throw UnrecognizedOptionException(key);
}
CVC4::SExpr SmtEngine::getOption(const std::string& key) const
@@ -69,7 +69,7 @@ CVC4::SExpr SmtEngine::getOption(const std::string& key) const
#line 71 "${template}"
- throw UnrecognizedOptionException();
+ throw UnrecognizedOptionException(key);
}
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback