summaryrefslogtreecommitdiff
path: root/src/filters.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-09-15 02:36:50 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-09-15 02:36:50 -0400
commit50ee03e3f0a44197722e6c3e85d1f60c48403576 (patch)
tree17e0c914e8493cb8028b5d02b64cf6f6f2b83b5e /src/filters.cc
parentb73c31c7259ee12bf746f477c9c9919fe72d5394 (diff)
downloadledger-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.cc2
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;
}
}