aboutsummaryrefslogtreecommitdiffstats
path: root/src/exception.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-06-12 12:20:34 +0000
committerVincent Richard <[email protected]>2013-06-12 12:20:34 +0000
commitf2211877a96fbb015d01c911f2a083a4afa09cfd (patch)
treea72ea021c2e3139a2c060889c1bd41d49bb2b3b3 /src/exception.cpp
parentMoved POP3 connection-related things to POP3Connection object. (diff)
downloadvmime-f2211877a96fbb015d01c911f2a083a4afa09cfd.tar.gz
vmime-f2211877a96fbb015d01c911f2a083a4afa09cfd.zip
Homogeneous use of vmime::string.
Diffstat (limited to 'src/exception.cpp')
-rw-r--r--src/exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.cpp b/src/exception.cpp
index a341c161..f223a1bb 100644
--- a/src/exception.cpp
+++ b/src/exception.cpp
@@ -292,7 +292,7 @@ const char* no_object_found::name() const throw() { return "no_object_found"; }
no_such_property::~no_such_property() throw() {}
no_such_property::no_such_property(const string& name, const exception& other)
- : exception(std::string("No such property: '") + name + string("'."), other) { }
+ : exception(string("No such property: '") + name + string("'."), other) { }
exception* no_such_property::clone() const { return new no_such_property(*this); }
const char* no_such_property::name() const throw() { return "no_such_property"; }