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