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
7
namespace
dg
{
8
class
out_of_range
:
public
std::out_of_range {
9
using
std::out_of_range::out_of_range;
10
};
11
class
runtime_error
:
public
std::runtime_error {
12
using
std::runtime_error::runtime_error;
13
};
14
class
node_not_exists
:
public
out_of_range
{
15
using
out_of_range::out_of_range;
16
};
17
}
// namespace dg
18
19
#endif
dg::node_not_exists
Definition:
except.hpp:14
dg::out_of_range
Definition:
except.hpp:8
dg::runtime_error
Definition:
except.hpp:11
dg
Directed Graph namespace.
Definition:
base.hpp:35
include
dg-cpp
except.hpp
Generated on Sat Jan 25 2025 18:22:25 for DG-CPP by
1.9.4