summaryrefslogtreecommitdiff
path: root/project2/commonObjects.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-02-16 16:09:32 +0000
committerrandomdan <randomdan@localhost>2011-02-16 16:09:32 +0000
commitfceb7a7b04de5c91adcd041c87642dc11c1a0fd4 (patch)
treede350f7b05dd7b6ce2e97ee44443452ccfa77b3d /project2/commonObjects.cpp
parentTidied up XML loader using boost::multi_index (diff)
downloadproject2-fceb7a7b04de5c91adcd041c87642dc11c1a0fd4.tar.bz2
project2-fceb7a7b04de5c91adcd041c87642dc11c1a0fd4.tar.xz
project2-fceb7a7b04de5c91adcd041c87642dc11c1a0fd4.zip
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
Diffstat (limited to 'project2/commonObjects.cpp')
-rw-r--r--project2/commonObjects.cpp2
1 files changed, 1 insertions, 1 deletions
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<bySOName>().end()) {
return *i;
}
- throw CommonObjects::DataSourceNotFound();
+ throw CommonObjects::DataSourceNotFound(name);
}