/* rsspp - Copyright (C) 2008-2012 Andreas Krennmair * Licensed under the MIT/X Consortium License. See file LICENSE * for more information. */ #include #include namespace rsspp { exception::exception(const std::string& errmsg) : emsg(errmsg) { } exception::~exception() throw() { } const char* exception::what() const throw() { return emsg.c_str(); } }