Main Page
Related Pages
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
include
ndn-cpp
security
validator-config-error.hpp
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
23
#ifndef NDN_VALIDATOR_CONFIG_ERROR_HPP
24
#define NDN_VALIDATOR_CONFIG_ERROR_HPP
25
26
#include <stdexcept>
27
28
namespace
ndn {
29
34
class
ValidatorConfigError
:
public
std::runtime_error
35
{
36
public
:
37
ValidatorConfigError
(
const
std::string& what)
38
: std::runtime_error(what)
39
{
40
}
41
};
42
43
}
44
45
#endif
ndn::ValidatorConfigError
A ValidatorConfigError extends runtime_error and represents an error using ValidatorConfig.
Definition:
validator-config-error.hpp:34
Generated on Sun Oct 21 2018 08:50:05 by
1.8.6