From 052450fb9462a185341616b9e7c6193cd305b187 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Wed, 5 May 2021 10:47:50 +0200 Subject: Make EDI input URI parse error more verbose --- src/input/Edi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/Edi.cpp b/src/input/Edi.cpp index 2aa776f..e206f28 100644 --- a/src/input/Edi.cpp +++ b/src/input/Edi.cpp @@ -104,7 +104,7 @@ void Edi::open(const std::string& name) m_tcp_receive_server.start(tcp_port, addr); } else { - throw runtime_error("Cannot parse EDI input URI"); + throw runtime_error(string("Cannot parse EDI input URI '") + name + "'"); } m_stats.registerAtServer(); -- cgit v1.2.3