All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
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
A ValidatorConfigError extends runtime_error and represents an error using ValidatorConfig.
Definition: validator-config-error.hpp:34