summaryrefslogtreecommitdiff
path: root/Skin++/src/LCMexception.hxx
diff options
context:
space:
mode:
authorstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
committerstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
commit7dfcc480ba1e19bd3232349fc733caef94034292 (patch)
tree03ee104eb8846d5cc1a981d267687a729185d3f3 /Skin++/src/LCMexception.hxx
Initial commit from Polytechnique Montreal
Diffstat (limited to 'Skin++/src/LCMexception.hxx')
-rwxr-xr-xSkin++/src/LCMexception.hxx22
1 files changed, 22 insertions, 0 deletions
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++
+ * <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