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