userver: userver/storages/secdist/exceptions.hpp Source File
Loading...
Searching...
No Matches
exceptions.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/storages/secdist/exceptions.hpp
4/// @brief Secdist configuration exception types
5
6#include <stdexcept>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace storages::secdist {
11
12class SecdistError : public std::runtime_error {
13 using std::runtime_error::runtime_error;
14};
15
17 using SecdistError::SecdistError;
18};
19
21 using SecdistError::SecdistError;
22};
23
25 using SecdistError::SecdistError;
26};
27
29 using SecdistError::SecdistError;
30};
31
32} // namespace storages::secdist
33
34USERVER_NAMESPACE_END