10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
LicensingRequestFailure.h
1#ifndef TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUESTFAILURE_H
2#define TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUESTFAILURE_H
3
4#include "../LicensingException.h"
5
6namespace tenduke { namespace ee { namespace licensing { namespace authzapi {
7
8
13{
14public:
19 explicit LicensingRequestFailure(const std::string &message)
20 : tenduke::ee::licensing::LicensingException(message)
21 {}
22};
23
24
25}}}}
26
27#endif // TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUESTFAILURE_H
Generic licensing-related exception.
Definition LicensingException.h:14
Thrown when there is some licensing-related error.
Definition LicensingRequestFailure.h:13
LicensingRequestFailure(const std::string &message)
Constructs new instance.
Definition LicensingRequestFailure.h:19
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4