10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
LicensingException.h
1#ifndef TENDUKE_EE_LICENSING_LICENSINGEXCEPTION_H
2#define TENDUKE_EE_LICENSING_LICENSINGEXCEPTION_H
3
4#include "./TendukeException.h"
5
6namespace tenduke { namespace ee { namespace licensing {
7
8
14{
15public:
20 explicit LicensingException(const std::string &message)
21 : tenduke::TendukeException(message)
22 {}
23};
24
25
26}}}
27
28#endif // TENDUKE_EE_LICENSING_LICENSINGEXCEPTION_H
Base class for exceptions thrown by 10Duke C++ clients.
Definition TendukeException.h:13
Generic licensing-related exception.
Definition LicensingException.h:14
LicensingException(const std::string &message)
Constructs new instance.
Definition LicensingException.h:20
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4