diff options
author | John Wiegley <johnw@newartisans.com> | 2008-09-15 02:36:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-09-15 02:36:50 -0400 |
commit | 50ee03e3f0a44197722e6c3e85d1f60c48403576 (patch) | |
tree | 17e0c914e8493cb8028b5d02b64cf6f6f2b83b5e /src/filters.cc | |
parent | b73c31c7259ee12bf746f477c9c9919fe72d5394 (diff) | |
download | ledger-50ee03e3f0a44197722e6c3e85d1f60c48403576.tar.gz ledger-50ee03e3f0a44197722e6c3e85d1f60c48403576.tar.bz2 ledger-50ee03e3f0a44197722e6c3e85d1f60c48403576.zip |
Fixed the way that nested caught exceptions are rethrown, and how value
expressions are displayed when errors are found in them.
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters.cc b/src/filters.cc index 29f517d6..9b5aded4 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -148,7 +148,7 @@ void calc_xacts::operator()(xact_t& xact) #if 0 add_error_context(xact_context(xact)); #endif - throw err; + throw; } } |