Midge  v3.9.2
Data Processing Framework
midge_error.cc
Go to the documentation of this file.
1 #include <iostream>
2 
3 #include "midge_error.hh"
4 
5 namespace midge
6 {
7 
9  base_exception()
10  {
11  }
12 
13  error::error( const error& p_copy ) :
14  base_exception( p_copy )
15  {
16  }
17 
18  error& error::operator=( const error& p_copy )
19  {
20  base_exception::operator=( p_copy );
21  return *this;
22  }
23 
24  error::~error() noexcept
25  {
26  }
27 
28 
30  base_exception()
31  {
32  }
33 
35  base_exception( p_copy )
36  {
37  }
38 
40  {
41  base_exception::operator=( p_copy );
42  return *this;
43  }
44 
46  {
47  }
48 
49 
51  base_exception()
52  {
53  }
54 
56  base_exception( p_copy )
57  {
58  }
59 
61  {
62  base_exception::operator=( p_copy );
63  return *this;
64  }
65 
67  {
68  }
69 
70 }
71 
Definition: _buffer.hh:11
virtual ~node_fatal_error() noexcept
Definition: midge_error.cc:45
error & operator=(const error &p_copy)
Definition: midge_error.cc:18
node_fatal_error & operator=(const node_fatal_error &p_copy)
Definition: midge_error.cc:39
virtual ~node_nonfatal_error() noexcept
Definition: midge_error.cc:66
node_nonfatal_error & operator=(const node_nonfatal_error &p_copy)
Definition: midge_error.cc:60
virtual ~error() noexcept
Definition: midge_error.cc:24