From 3d4eb53e5e462e4a00afaf5eaef05c0175b3ac7f Mon Sep 17 00:00:00 2001 From: randomdan Date: Wed, 16 Feb 2011 16:09:32 +0000 Subject: Make CurlHandle throw an exception on failure Improve error messages almost everywhere Allow setting of platform through the options system Allow specifying query params on the console Fix file stream writer's string support for strings containing multibyte chars --- project2/commonObjects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project2/commonObjects.cpp') diff --git a/project2/commonObjects.cpp b/project2/commonObjects.cpp index 6d8fc08..31f81a9 100644 --- a/project2/commonObjects.cpp +++ b/project2/commonObjects.cpp @@ -7,7 +7,7 @@ CommonObjects::getSource(const std::string & name) const if (i != rowSets.get().end()) { return *i; } - throw CommonObjects::DataSourceNotFound(); + throw CommonObjects::DataSourceNotFound(name); } -- cgit v1.2.3