summaryrefslogtreecommitdiff
path: root/Skin++/src/Cle2000Exception.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/Cle2000Exception.hxx
Initial commit from Polytechnique Montreal
Diffstat (limited to 'Skin++/src/Cle2000Exception.hxx')
-rwxr-xr-xSkin++/src/Cle2000Exception.hxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/Skin++/src/Cle2000Exception.hxx b/Skin++/src/Cle2000Exception.hxx
new file mode 100755
index 0000000..5c9020a
--- /dev/null
+++ b/Skin++/src/Cle2000Exception.hxx
@@ -0,0 +1,22 @@
+/**
+ * Exception class for Cle2000 wrapper uses in C++
+ * <P>
+ *
+ * @author Alain Hebert, Ecole Polytechnique de Montreal (2012)
+ */
+#ifndef Cle2000Exception_HXX
+#define Cle2000Exception_HXX
+
+#include <string>
+#include <iostream>
+#include <stdexcept>
+
+namespace ganlib {
+
+class Cle2000Exception : public std::runtime_error {
+public:
+ Cle2000Exception(const std::string& msg = "");
+}; // class Cle2000Exception */
+
+} // namespace ganlib
+#endif