File HttpRequestException.h
File List > e-paper-board > src > exception > HttpRequestException.h
Go to the documentation of this file.
#include <exception>
struct HttpRequestException : public std::exception {
const char* what() const throw() {
return "HTTP request error";
}
};