00001
00004 #ifndef _Error_h
00005 #define _Error_h
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 class Error
00023 {
00024 public:
00025
00026
00027
00028
00029
00030
00031
00036 Error(const Error& from);
00037
00042 Error(const wxString& description);
00043
00046 ~Error(void);
00047
00048
00049
00050
00057 Error& operator=(const Error& from);
00058
00059
00060
00061
00064 const wxString& What() const;
00065
00066
00067
00068 protected:
00069 wxString mDescription;
00070 private:
00071 };
00072
00073
00074
00075
00076
00077
00078
00079 #endif // _Error_h