summaryrefslogtreecommitdiff
path: root/src/options/option_exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/option_exception.h')
-rw-r--r--src/options/option_exception.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/options/option_exception.h b/src/options/option_exception.h
index 4cea29592..12c69193e 100644
--- a/src/options/option_exception.h
+++ b/src/options/option_exception.h
@@ -30,9 +30,10 @@ namespace CVC4 {
* class, below) should be used instead.
*/
class CVC4_PUBLIC OptionException : public CVC4::Exception {
-public:
- OptionException(const std::string& s) throw() :
- CVC4::Exception("Error in option parsing: " + s) {
+ public:
+ OptionException(const std::string& s)
+ : CVC4::Exception("Error in option parsing: " + s)
+ {
}
};/* class OptionException */
@@ -41,7 +42,7 @@ public:
* unrecognized or unsupported option key.
*/
class CVC4_PUBLIC UnrecognizedOptionException : public CVC4::OptionException {
-public:
+ public:
UnrecognizedOptionException() :
CVC4::OptionException("Unrecognized informational or option key or setting") {
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback