10Duke Scale C++ Client
Loading...
Searching...
No Matches
JSONParsingException.h
1#ifndef TENDUKE_JSON_JSONPARSINGEXCEPTION_H
2#define TENDUKE_JSON_JSONPARSINGEXCEPTION_H
3
4#include "./JSONException.h"
5
6namespace tenduke { namespace json {
7
13{
14public:
19 explicit JSONParsingException(const std::string& message)
20 : tenduke::json::JSONException(message)
21 {}
22};
23
24}}
25
26#endif // TENDUKE_JSON_JSONPARSINGEXCEPTION_H
Thrown on JSON-related errors.
Definition JSONException.h:12
Thrown when JSON parsing failed.
Definition JSONParsingException.h:13
JSONParsingException(const std::string &message)
Constructs new instance.
Definition JSONParsingException.h:19
JSON support.
Definition JSONArray.h:10
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7