File JsonParseException.h
File List > e-paper-board > src > exception > JsonParseException.h
Go to the documentation of this file.
#include <exception>
struct JsonParseException : public std::exception {
const char* what() const throw() {
return "JSON parsing input failed!";
}
};