summaryrefslogtreecommitdiff
path: root/src/parser/smt2/smt2_input.h
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.h
parent88766918615793536224bf50d0bb70ec9f9efd93 (diff)
Adding TypeCheckingException to throws clause in SMT parsers
Diffstat (limited to 'src/parser/smt2/smt2_input.h')
-rw-r--r--src/parser/smt2/smt2_input.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parser/smt2/smt2_input.h b/src/parser/smt2/smt2_input.h
index 45986948a..320f5ab75 100644
--- a/src/parser/smt2/smt2_input.h
+++ b/src/parser/smt2/smt2_input.h
@@ -81,7 +81,8 @@ protected:
*
* @throws ParserException if an error is encountered during parsing.
*/
- Command* parseCommand() throw(ParserException, AssertionException);
+ Command* parseCommand()
+ throw(ParserException, TypeCheckingException, AssertionException);
/**
* Parse an expression from the input. Returns a null
@@ -89,7 +90,8 @@ protected:
*
* @throws ParserException if an error is encountered during parsing.
*/
- Expr parseExpr() throw(ParserException, AssertionException);
+ Expr parseExpr()
+ throw(ParserException, TypeCheckingException, AssertionException);
};/* class Smt2Input */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback