diff options
author | Vincent Richard <[email protected]> | 2005-01-04 22:03:16 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-01-04 22:03:16 +0000 |
commit | 3b97064d40e93c26bdf895c52bedb2f58dda0406 (patch) | |
tree | 517bd37ecea5c668620db1696f60ad2c45d95b10 /src/messaging/maildirStore.cpp | |
parent | Fixed a linking error with g++ <= 3.2. (diff) | |
download | vmime-3b97064d40e93c26bdf895c52bedb2f58dda0406.tar.gz vmime-3b97064d40e93c26bdf895c52bedb2f58dda0406.zip |
Added diagnostic error string for 'exceptions::connection_error' + fixed a bug in 'posixSocket::connect()' when specifying an IP address.
Diffstat (limited to 'src/messaging/maildirStore.cpp')
-rw-r--r-- | src/messaging/maildirStore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messaging/maildirStore.cpp b/src/messaging/maildirStore.cpp index 63a94971..1bb5ace2 100644 --- a/src/messaging/maildirStore.cpp +++ b/src/messaging/maildirStore.cpp @@ -121,7 +121,7 @@ void maildirStore::connect() } catch (exceptions::filesystem_exception& e) { - throw exceptions::connection_error(e); + throw exceptions::connection_error("Cannot create root directory.", e); } } |