CrystalFp
 All Classes Namespaces Files Functions Enumerations Enumerator Pages
CrystalFpExceptions.h
Go to the documentation of this file.
1 
2 
3 
4 #ifndef CRYSTALFPEXCEPTIONS_H
5 #define CRYSTALFPEXCEPTIONS_H
6 
7 #include <stdexcept>
8 
9 namespace cfp
10 {
11 
17 class CrystalFpFatal : public std::runtime_error
18 {
19 public:
24  CrystalFpFatal(const char *aMsg="") : runtime_error(aMsg)
25  {}
26 };
27 
28 }
29 #endif
30