10Duke Scale C++ Client
Loading...
Searching...
No Matches
LicensingException.h
1#ifndef TENDUKE_SE_LICENSING_LICENSINGEXCEPTION_H
2#define TENDUKE_SE_LICENSING_LICENSINGEXCEPTION_H
3
4#include "TendukeException.h"
5
6namespace tenduke { namespace se { namespace licensing {
7
12{
13public:
18 explicit LicensingException(const std::string &arg) : TendukeException(arg) {}
19};
20
21}}}
22
23#endif //TENDUKE_SE_LICENSING_LICENSINGEXCEPTION_H
Base class for exceptions thrown by 10Duke C++ clients.
Definition TendukeException.h:13
Thrown when something unexpected happened with licensing operations.
Definition LicensingException.h:12
LicensingException(const std::string &arg)
Constructs new instance.
Definition LicensingException.h:18
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7