blob: 5c9020a215e4522303664af3594c948104851e6a (
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 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
|