diff options
author | Vincent Richard <[email protected]> | 2005-03-27 13:06:45 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-03-27 13:06:45 +0000 |
commit | 4ab9332ce6269807edb45e69f7e6000aa40d4478 (patch) | |
tree | 6f5e4e583ff7d7b88e62dac7b81a90c129a7d3b9 /src/exception.cpp | |
parent | Some fixes for Visual C++/Windows. (diff) | |
download | vmime-4ab9332ce6269807edb45e69f7e6000aa40d4478.tar.gz vmime-4ab9332ce6269807edb45e69f7e6000aa40d4478.zip |
Added new basic type 'messageIdSequence'.
Diffstat (limited to 'src/exception.cpp')
-rw-r--r-- | src/exception.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/exception.cpp b/src/exception.cpp index 4bbdefd3..b7be006c 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -163,6 +163,18 @@ const string no_such_mailbox::name() const { return "no_such_mailbox"; } // +// no_such_message_id +// + +no_such_message_id::~no_such_message_id() throw() {} +no_such_message_id::no_such_message_id(const exception& other) + : exception("Message-Id not found.", other) {} + +exception* no_such_message_id::clone() const { return new no_such_message_id(*this); } +const string no_such_message_id::name() const { return "no_such_message_id"; } + + +// // no_such_address // |