Merge branch 'master' of ssh://repo.or.cz/srv/git/ail
[ail.git] / source / exception.cpp
blob2784b060d49a8d015f0869e4f1c5e836a3546cad
1 #include <ail/exception.hpp>
3 namespace ail
5 exception::exception()
9 exception::exception(std::string const & message):
10 message(message)
14 exception::~exception() throw ()
18 std::string const & exception::get_message() const
20 return message;