From: Peter van Dijk Date: Mon, 23 Sep 2019 07:43:43 +0000 (+0200) Subject: clarify exception type when printed by default runtime handler X-Git-Tag: auth-4.3.0-alpha1~13^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e08c410b8655b69cfd893a8670ad9c3f4f43aa64;p=thirdparty%2Fpdns.git clarify exception type when printed by default runtime handler --- diff --git a/pdns/dnspcap.hh b/pdns/dnspcap.hh index 0eade284e7..1b9b0e2800 100644 --- a/pdns/dnspcap.hh +++ b/pdns/dnspcap.hh @@ -85,7 +85,7 @@ public: class EofException : public runtime_error { public: - EofException(const string& str="") : runtime_error(str) + EofException(const string& str="PcapPacketReader::EofException") : runtime_error(str) { } };