From f572da93228feabc10f2956e7ea0b3b9e253cc19 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 5 Dec 2013 22:11:31 +0000 Subject: QPID-5398: Minor improvement to log message. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1548317 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/sys/windows/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp/src') diff --git a/qpid/cpp/src/qpid/sys/windows/Path.cpp b/qpid/cpp/src/qpid/sys/windows/Path.cpp index ce04bb17fd..abcaee2574 100644 --- a/qpid/cpp/src/qpid/sys/windows/Path.cpp +++ b/qpid/cpp/src/qpid/sys/windows/Path.cpp @@ -38,7 +38,7 @@ namespace { bool getStat(const std::string& path, struct _stat& s) { if (::_stat(path.c_str(), &s)) { if (errno == ENOENT) return false; - throw qpid::Exception (strError(errno) + ": Invalid path: " + path); + throw qpid::Exception("cannot stat: " + path + ": " + strError(errno)) } return true; } -- cgit v1.2.1