src/Error.hh
author terom
Mon, 08 Dec 2008 22:28:51 +0000
changeset 319 9f6a838d58c4
parent 227 39cd6861e43e
permissions -rw-r--r--
improve input handling further, ROPE_THROW and DIG don't repeat at all now
#ifndef ERROR_HH
#define ERROR_HH

#include "Logger.hh"

#include <stdexcept>
#include <string>

class Error : public std::exception {
    private:
        const char *message;
    
    public:
        Error (const std::string &message) : message(message.c_str()) { }

        virtual const char* what() const throw() {
            return message;
        }
};

std::ostream& operator<< (std::ostream &s, Error &e);

#endif /* ERROR_HH */