#include "exception.h" #include #include "config.h" namespace newsboat { Exception::Exception(unsigned int error_code) : ecode(error_code) { } Exception::~Exception() throw() {} const char* Exception::what() const throw() { return ::strerror(ecode); } } // namespace newsboat