Minotaur 0.4.1
Docs for developers
Loading...
Searching...
No Matches
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
11namespace 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
Definition Exception.h:12
Definition ActiveNodeStore.h:20

Minotaur source code documented by Doxygen 1.9.8 on Fri Nov 14 2025