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