TARAXA
config_exception.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdexcept>
4 
5 namespace taraxa {
6 
7 struct ConfigException : public std::runtime_error {
8  using std::runtime_error::runtime_error;
9 };
10 
11 } // namespace taraxa
Definition: config.hpp:8
Definition: config_exception.hpp:7