Kaydet (Commit) b1faaf73 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Put quotes around a URL in a message to make it more obvious if it is empty

Change-Id: I03fe3f70ee97066d9c2083d4ef091c501f241392
üst 362fc24e
......@@ -103,7 +103,7 @@ bool create_folder(
// invalid: has to be at least "auth:/..."
if (throw_exc)
throw ContentCreationException(
"Cannot create folder (invalid path): " + url,
"Cannot create folder (invalid path): '" + url + "'",
Reference<XInterface>(), ContentCreationError_UNKNOWN );
return false;
}
......@@ -154,7 +154,7 @@ bool create_folder(
}
if (throw_exc)
throw ContentCreationException(
"Cannot create folder: " + url,
"Cannot create folder: '" + url + "'",
Reference<XInterface>(), ContentCreationError_UNKNOWN );
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment