From 4ab9332ce6269807edb45e69f7e6000aa40d4478 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sun, 27 Mar 2005 13:06:45 +0000 Subject: Added new basic type 'messageIdSequence'. --- src/exception.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/exception.cpp') diff --git a/src/exception.cpp b/src/exception.cpp index 4bbdefd3..b7be006c 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -162,6 +162,18 @@ exception* no_such_mailbox::clone() const { return new no_such_mailbox(*this); } 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 // -- cgit v1.2.3