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