blob: 041d334d04bdbdbae0ecd041ca090717584d7874 (
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 LCM uses in C++
* <P>
*
* @author Alain Hebert, Ecole Polytechnique de Montreal (2010)
*/
#ifndef LCMexception_HXX
#define LCMexception_HXX
#include <string>
#include <iostream>
#include <stdexcept>
namespace ganlib {
class LCMexception : public std::runtime_error {
public:
LCMexception(const std::string& msg = "");
}; // class LCMexception */
} // namespace ganlib
#endif
|