123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef __MESSAGE_EXCEPTION_H
- #define __MESSAGE_EXCEPTION_H
- #include <stdexcept>
- #include <string>
- #include <vector>
- #include <boost/lexical_cast.hpp>
- #include <log/message_types.h>
- namespace isc {
- namespace log {
- /// \brief Message Exception
- ///
- /// Used in the message reader, this simple exception class allows a message
- /// code and its arguments to be encapsulated in an exception and thrown
- /// up the stack.
- class MessageException : public std::exception {
- public:
- /// \brief Constructor
- ///
- /// \param id Message identification.
- /// \param lineno Line number on which error occurred (if > 0).
- MessageException(MessageID id, int lineno = 0) : id_(id)
- {
- if (lineno > 0) {
- args_.push_back(boost::lexical_cast<std::string>(lineno));
- }
- }
- /// \brief Constructor
- ///
- /// \param id Message identification.
- /// \param arg1 First message argument.
- /// \param lineno Line number on which error occurred (if > 0).
- MessageException(MessageID id, const std::string& arg1, int lineno = 0)
- : id_(id)
- {
- if (lineno > 0) {
- args_.push_back(boost::lexical_cast<std::string>(lineno));
- }
- args_.push_back(arg1);
- }
- /// \brief Constructor
- ///
- /// \param id Message identification.
- /// \param arg1 First message argument.
- /// \param arg2 Second message argument.
- /// \param lineno Line number on which error occurred (if > 0).
- MessageException(MessageID id, const std::string& arg1,
- const std::string& arg2, int lineno = 0) : id_(id)
- {
- if (lineno > 0) {
- args_.push_back(boost::lexical_cast<std::string>(lineno));
- }
- args_.push_back(arg1);
- args_.push_back(arg2);
- }
- /// \brief Destructor
- ~MessageException() throw() {}
- /// \brief Return Message ID
- ///
- /// \return Message identification
- MessageID id() const {
- return id_;
- }
- /// \brief Return Arguments
- ///
- /// \return Exception Arguments
- std::vector<std::string> arguments() const {
- return (args_);
- }
- private:
- MessageID id_; // Exception ID
- std::vector<std::string> args_; // Exception arguments
- };
- } // namespace log
- } // namespace isc
- #endif // __MESSAGE_EXCEPTION_H
|