From 7dfcc480ba1e19bd3232349fc733caef94034292 Mon Sep 17 00:00:00 2001 From: stainer_t Date: Mon, 8 Sep 2025 13:48:49 +0200 Subject: Initial commit from Polytechnique Montreal --- Skin++/src/LCMexception.hxx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 Skin++/src/LCMexception.hxx (limited to 'Skin++/src/LCMexception.hxx') diff --git a/Skin++/src/LCMexception.hxx b/Skin++/src/LCMexception.hxx new file mode 100755 index 0000000..041d334 --- /dev/null +++ b/Skin++/src/LCMexception.hxx @@ -0,0 +1,22 @@ +/** + * 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 -- cgit v1.2.3