File JsonBadFormatObjectException.h
File List > e-paper-board > src > exception > JsonBadFormatObjectException.h
Go to the documentation of this file.
#include <exception>
struct JsonBadFormatObjectException : public std::exception {
const char* what() const throw() {
return "JSON object is in a bad format!";
}
};