Mercurial > dedupe
diff Exception.hpp @ 16:06166d6c083b
Add configuration processing.
Cache DB values
Add a custom RBTree to save space.
Track multiple DB connections properly.
More testing.
Add ValueExistsException.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Tue, 28 Aug 2012 18:58:02 +0200 |
| parents | b5943e4bf676 |
| children |
line wrap: on
line diff
--- a/Exception.hpp Sat Aug 25 01:42:13 2012 +0200 +++ b/Exception.hpp Tue Aug 28 18:58:02 2012 +0200 @@ -19,7 +19,7 @@ protected: - Exception(const string_t& errorMsg) : errorMsg_(errorMsg) {} + Exception(const string_t& errorMsg = string_t()) : errorMsg_(errorMsg) {} virtual ~Exception() {} void setErrorMsg(string_t& errorMsg);
