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