My Project
 All Classes Namespaces Functions Friends
Cle2000Exception.hxx
1 
7 #ifndef Cle2000Exception_HXX
8 #define Cle2000Exception_HXX
9 
10 #include <string>
11 #include <iostream>
12 #include <stdexcept>
13 
14 namespace ganlib {
15 
16 class Cle2000Exception : public std::runtime_error {
17 public:
18  Cle2000Exception(const std::string& msg = "");
19 }; // class Cle2000Exception */
20 
21 } // namespace ganlib
22 #endif