diff options
Diffstat (limited to 'Skin++/src/Cle2000Exception.hxx')
| -rwxr-xr-x | Skin++/src/Cle2000Exception.hxx | 22 |
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 |
