diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-01-23 22:05:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-01-23 22:05:10 +0000 |
commit | 4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350 (patch) | |
tree | 7cae4b392840ef12ca87dbe9cc1d07a04531f756 /src/formula.cpp | |
parent | d4cf48613dd9b1338e174edbf4f47a7736bb2505 (diff) | |
download | libbu++-4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350.tar.gz libbu++-4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350.tar.bz2 libbu++-4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350.tar.xz libbu++-4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350.zip |
I changed the ParseException in Formula to Bu::FormulaException. It actually
wasn't in a namespace, and it was a little too generic. I like the idea of
putting all the parser exceptions under a new class called ParseException, but
well do it a little later.
Diffstat (limited to '')
-rw-r--r-- | src/formula.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/formula.cpp b/src/formula.cpp index a7d9347..3f52cad 100644 --- a/src/formula.cpp +++ b/src/formula.cpp | |||
@@ -7,5 +7,8 @@ | |||
7 | 7 | ||
8 | #include "formula.h" | 8 | #include "formula.h" |
9 | 9 | ||
10 | subExceptionDef( ParseException ); | 10 | namespace Bu |
11 | { | ||
12 | subExceptionDef( FormulaException ); | ||
13 | } | ||
11 | 14 | ||