aboutsummaryrefslogtreecommitdiff
path: root/src/formula.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-01-23 22:05:10 +0000
committerMike Buland <eichlan@xagasoft.com>2009-01-23 22:05:10 +0000
commit4ab0993d037c9ad84b3fcaf2ec8fb3d905fc7350 (patch)
tree7cae4b392840ef12ca87dbe9cc1d07a04531f756 /src/formula.cpp
parentd4cf48613dd9b1338e174edbf4f47a7736bb2505 (diff)
downloadlibbu++-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 'src/formula.cpp')
-rw-r--r--src/formula.cpp5
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
10subExceptionDef( ParseException ); 10namespace Bu
11{
12 subExceptionDef( FormulaException );
13}
11 14