10Duke Scale C++ Client
Loading...
Searching...
No Matches
JWKException.h
1#ifndef TENDUKE_JWK_JWKEXCEPTION_H
2#define TENDUKE_JWK_JWKEXCEPTION_H
3
4#include "TendukeException.h"
5
6#include <string>
7
8namespace tenduke { namespace jwk {
9
10
15{
16public:
21 explicit JWKException(const std::string &message)
22 : tenduke::TendukeException(message)
23 {}
24
25 ~JWKException() override = default;
26};
27
28
29}}
30
31#endif // TENDUKE_JWK_JWKEXCEPTION_H
Base class for exceptions thrown by 10Duke C++ clients.
Definition TendukeException.h:13
Thrown when something goes wrong with JWKs.
Definition JWKException.h:15
JWKException(const std::string &message)
Constructs new instance.
Definition JWKException.h:21
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7