summaryrefslogtreecommitdiff
path: root/src/parser/smt2/smt2_input.cpp
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-07-28 23:04:44 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-07-28 23:04:44 +0000
commita93313ba33af5a283115515f513979b7d2cd4732 (patch)
treea53fba01840a40ed00793f33eae2eccc28de0a2f /src/parser/smt2/smt2_input.cpp
parent88766918615793536224bf50d0bb70ec9f9efd93 (diff)
Adding TypeCheckingException to throws clause in SMT parsers
Diffstat (limited to 'src/parser/smt2/smt2_input.cpp')
-rw-r--r--src/parser/smt2/smt2_input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/smt2/smt2_input.cpp b/src/parser/smt2/smt2_input.cpp
index e0bcadd61..cbb9c57a3 100644
--- a/src/parser/smt2/smt2_input.cpp
+++ b/src/parser/smt2/smt2_input.cpp
@@ -61,12 +61,12 @@ Smt2Input::~Smt2Input() {
}
Command* Smt2Input::parseCommand()
- throw (ParserException, AssertionException) {
+ throw (ParserException, TypeCheckingException, AssertionException) {
return d_pSmt2Parser->parseCommand(d_pSmt2Parser);
}
Expr Smt2Input::parseExpr()
- throw (ParserException, AssertionException) {
+ throw (ParserException, TypeCheckingException, AssertionException) {
return d_pSmt2Parser->parseExpr(d_pSmt2Parser);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback