This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/env/exception.hpp
2013-08-05 03:10:18 +03:00

18 lines
275 B
C++

#pragma once
#include "message_list.hpp"
namespace ex
{
class Exception
{
string m_msg;
public:
Exception(string const & msg) : m_msg(msg) {}
string const & Msg() const { return m_msg; }
};
}
#define THROWEX(klass, message) throw klass(::msg::MessageList message)