diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-31 06:24:45 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-31 06:24:45 -0400 |
commit | 99313ebc6c3779f692f9f1bd70cc69a236f5eb78 (patch) | |
tree | 44a553891a9aaa148084d8e011b2d326401343e9 /format.h | |
parent | 8afd926a27af55862ce360970e05d747f249a0da (diff) | |
download | ledger-99313ebc6c3779f692f9f1bd70cc69a236f5eb78.tar.gz ledger-99313ebc6c3779f692f9f1bd70cc69a236f5eb78.tar.bz2 ledger-99313ebc6c3779f692f9f1bd70cc69a236f5eb78.zip |
Revised the way that exceptions are thrown around. Instead of context being a
complicated string of pointers, it's now just a global block of text that gets
appended to as the error is being thrown up, and can be displayed at the catch
point if desired. There are almost no cases where a thrown exception will not
result in an error message being displayed to the user.
Diffstat (limited to 'format.h')
-rw-r--r-- | format.h | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -219,13 +219,7 @@ class format_equity : public item_handler<account_t> virtual void operator()(account_t& account); }; -class format_error : public error -{ - public: - format_error(const string& reason, error_context * ctxt = NULL) throw() - : error(reason, ctxt) {} - virtual ~format_error() throw() {} -}; +DECLARE_EXCEPTION(format_error, std::runtime_error); } // namespace ledger |