Minotaur
0.4.1
Docs for developers
src
base
Exception.h
1
//
2
// Minotaur -- It's only 1/2 bull
3
//
4
// (C)opyright 2009 - 2025 The Minotaur Team.
5
//
6
7
8
#ifndef MINOTAUREXCEPTION_H
9
#define MINOTAUREXCEPTION_H
10
11
namespace
Minotaur
{
12
class
Exception
{
13
public
:
14
Exception
() { }
15
Exception
(
const
Exception
&) { }
// Copy constructor
16
virtual
~Exception
() { }
// Destructor
17
18
private
:
19
Exception
& operator=(
const
Exception
&);
// Copy assignment
20
};
21
}
22
23
#endif
24
Minotaur::Exception
Definition:
Exception.h:12
Minotaur
Definition:
ActiveNodeStore.h:20
Minotaur source code documented by
Doxygen 1.9.4
on Thu Apr 24 2025