summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-11-04 14:28:19 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-11-05 14:36:15 +0100
commit3fa21bd39d9b9cb1b0b8d71e2cc98eebb98ad871 (patch)
treedd70806725e52530c578c8e306c0a4f7101911bf
parent555121f96e769fdeb9529e7381560d8bbb6e2713 (diff)
downloaddabmux-3fa21bd39d9b9cb1b0b8d71e2cc98eebb98ad871.tar.gz
dabmux-3fa21bd39d9b9cb1b0b8d71e2cc98eebb98ad871.tar.bz2
dabmux-3fa21bd39d9b9cb1b0b8d71e2cc98eebb98ad871.zip
Do not throw a copy of the exception
-rw-r--r--src/ConfigParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp
index 7e3f855..770daa6 100644
--- a/src/ConfigParser.cpp
+++ b/src/ConfigParser.cpp
@@ -384,7 +384,7 @@ void parse_ptree(
catch (runtime_error &e) {
etiLog.log(error,
"%s\n", e.what());
- throw e;
+ throw;
}