summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cxml.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cxml.cc b/src/cxml.cc
index 810abf8..2aad081 100644
--- a/src/cxml.cc
+++ b/src/cxml.cc
@@ -253,7 +253,7 @@ void
cxml::Document::read_file (filesystem::path file)
{
if (!filesystem::exists (file)) {
- throw cxml::Error ("XML file does not exist");
+ throw cxml::Error ("XML file " + file.string() + " does not exist");
}
_parser->parse_file (file.string ());