10Duke Scale C++ Client
Loading...
Searching...
No Matches
LicenseCheckoutError.h
1#ifndef TENDUKE_SE_LICENSING_LICENSECHECKOUTERROR_H
2#define TENDUKE_SE_LICENSING_LICENSECHECKOUTERROR_H
3
4#include "../LicensingError.h"
5
6#include <utility>
7
8
9namespace tenduke { namespace se { namespace licensing {
10
15{
16public:
24 const std::string &errorCode,
25 const std::string &errorDescription,
26 std::string productName
28 , productName(std::move(productName))
29 {}
30
31public:
33 const std::string productName;
34};
35
36}}}
37
38#endif //TENDUKE_SE_LICENSING_LICENSECHECKOUTERROR_H
Describes error in checkout at license level.
Definition LicenseCheckoutError.h:15
LicenseCheckoutError(const std::string &errorCode, const std::string &errorDescription, std::string productName)
Constructs new instance.
Definition LicenseCheckoutError.h:23
const std::string productName
Product name.
Definition LicenseCheckoutError.h:33
Common base for licensing operation errors (checkout, heartbeat, release).
Definition LicensingError.h:15
const std::string errorCode
Error code.
Definition LicensingError.h:31
const std::string errorDescription
Description.
Definition LicensingError.h:33
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7