JWTXX
C++ library for JWT
Loading...
Searching...
No Matches
error.h
1#pragma once
2
3#include <stdexcept>
4
5namespace JWTXX
6{
7
11struct Error : public std::runtime_error
12{
14 explicit Error(const std::string& message) noexcept : runtime_error(message) {}
15};
16
17}
All classes, functions and constants are here.
Definition error.h:6
Error(const std::string &message) noexcept
Constructor.
Definition error.h:14