/* This file is part of mastorss. * Copyright © 2019 tastytea * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "exceptions.hpp" #include using std::to_string; using std::move; namespace mastorss { HTTPException::HTTPException(const int error) : error_code{static_cast(error)} {} const char *HTTPException::what() const noexcept { static const string error_string{"HTTP error: " + to_string(error_code)}; return error_string.c_str(); } CURLException::CURLException(const int error) : error_code{static_cast(error)} {} const char *CURLException::what() const noexcept { static const string error_string{"libcurl error: " + to_string(error_code)}; return error_string.c_str(); } FileException::FileException(string message) : _message{move(message)} {} const char *FileException::what() const noexcept { return _message.c_str(); } ParseException::ParseException(string message) : _message{move(message)} {} const char *ParseException::what() const noexcept { return _message.c_str(); } } // namespace mastorss