blob: 79b348abe895e4528ba9aca154f967a64c8bfeb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* Exception class for Lifo stack uses in C++
* <P>
*
* @author Alain Hebert, Ecole Polytechnique de Montreal (2012)
*/
#ifndef LifoException_HXX
#define LifoException_HXX
#include <string>
#include <iostream>
#include <stdexcept>
namespace ganlib {
class LifoException : public std::runtime_error {
public:
LifoException(const std::string& msg = "");
}; // class LifoException */
} // namespace ganlib
#endif
|