10Duke Scale C++ Client
Loading...
Searching...
No Matches
JWTValidationException.h
1#ifndef TENDUKE_JWT_JWTVALIDATIONEXCEPTION_H
2#define TENDUKE_JWT_JWTVALIDATIONEXCEPTION_H
3
4#include "./JWTParsingException.h"
5#include <string>
6
7namespace tenduke { namespace jwt {
8
9
14{
15public:
21 JWTValidationException(const int code, const std::string &message)
22 : JWTParsingException(code, message)
23 {}
24
25};
26
27}}
28
29#endif // TENDUKE_JWT_JWTVALIDATIONEXCEPTION_H
Thrown when there is a problem parsing JWT.
Definition JWTParsingException.h:15
Thrown when JWT-validation failed (e.g.
Definition JWTValidationException.h:14
JWTValidationException(const int code, const std::string &message)
Constructs new instance.
Definition JWTValidationException.h:21
Support for JSON Web Tokens.
Definition DefaultJWTParser.h:11
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7