userver
C++ Async Framework
Documentation
API Groups
Namespaces
Reference
Class List
Class Index
File List
Macros
All
e
i
l
r
t
u
Functions
Macros
e
i
l
r
t
u
Examples
Toggle main menu visibility
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
All results
exception.hpp
Go to the documentation of this file.
1
#
pragma
once
2
3
/// @file userver/crypto/exception.hpp
4
/// @brief Exception classes for crypto module
5
6
#
include
<
memory
>
7
8
#
include
<
userver
/
utils
/
traceful_exception
.
hpp
>
9
10
USERVER_NAMESPACE_BEGIN
11
12
namespace
crypto
{
13
14
/// Base exception
15
class
CryptoException
:
public
utils
::
TracefulException
{
16
public
:
17
using
utils
::
TracefulException
::TracefulException;
18
};
15
class
CryptoException
:
public
utils
::
TracefulException
{
…
};
19
20
/// Signature generation error
21
class
SignError
:
public
CryptoException
{
22
public
:
23
using
CryptoException
::CryptoException;
24
};
21
class
SignError
:
public
CryptoException
{
…
};
25
26
/// Signature verification error
27
class
VerificationError
:
public
CryptoException
{
28
public
:
29
using
CryptoException
::CryptoException;
30
};
27
class
VerificationError
:
public
CryptoException
{
…
};
31
32
/// Signing key parse error
33
class
KeyParseError
:
public
CryptoException
{
34
public
:
35
using
CryptoException
::CryptoException;
36
};
33
class
KeyParseError
:
public
CryptoException
{
…
};
37
38
/// Serialization error
39
class
SerializationError
:
public
CryptoException
{
40
public
:
41
using
CryptoException
::CryptoException;
42
};
39
class
SerializationError
:
public
CryptoException
{
…
};
43
44
}
// namespace crypto
45
46
USERVER_NAMESPACE_END
Docs version:
v1.0
,
v2.0
,
trunk/develop
userver
crypto
exception.hpp
Generated on Wed Apr 30 2025 15:48:43 for userver by
Doxygen
1.13.2