Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 76cddaa0ea391b2c8611895ac3075a20 > files > 21

einstein-2.0-1.x86_64.rpm

#ifndef __EXCEPTIONS_H__
#define __EXCEPTIONS_H__


#include <string>
#include <iostream>


class Exception
{
    private:
        std::wstring message;
    
    public:
        Exception(const std::wstring& msg) { message = msg;  /*std::cout << msg << std::endl;*/ };
        virtual ~Exception() { };

    public:
        const std::wstring& getMessage() const { return message; };
};


#endif