My Project
 All Classes Namespaces Functions Friends
LifoException.hxx
1 
7 #ifndef LifoException_HXX
8 #define LifoException_HXX
9 
10 #include <string>
11 #include <iostream>
12 #include <stdexcept>
13 
14 namespace ganlib {
15 
16 class LifoException : public std::runtime_error {
17 public:
18  LifoException(const std::string& msg = "");
19 }; // class LifoException */
20 
21 } // namespace ganlib
22 #endif