DG-CPP 0.1.0
Directed Graph in C++
except.hpp
Go to the documentation of this file.
1#ifndef _DG_EXCEPT_HPP_
2#define _DG_EXCEPT_HPP_
3
4#include <exception>
5#include <stdexcept>
6
7namespace dg {
8class out_of_range : public std::out_of_range {
9 using std::out_of_range::out_of_range;
10};
11class runtime_error : public std::runtime_error {
12 using std::runtime_error::runtime_error;
13};
15 using out_of_range::out_of_range;
16};
17} // namespace dg
18
19#endif
Definition: except.hpp:14
Definition: except.hpp:8
Definition: except.hpp:11
Directed Graph namespace.
Definition: base.hpp:35