/** * Exception class for LCM uses in C++ *

* * @author Alain Hebert, Ecole Polytechnique de Montreal (2010) */ #ifndef LCMexception_HXX #define LCMexception_HXX #include #include #include namespace ganlib { class LCMexception : public std::runtime_error { public: LCMexception(const std::string& msg = ""); }; // class LCMexception */ } // namespace ganlib #endif