00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef MOCKPP_EXCEPTION
00030 #define MOCKPP_EXCEPTION
00031
00032 #include <mockpp/mockpp.h>
00033
00034 #ifdef MOCKPP_USE_STD_EXCEPTION
00035 #include <exception>
00036 #endif
00037
00038
00039 MOCKPP_NS_START
00040
00041
00045 class MOCKPP_API_DECL0 Exception
00046 #ifdef MOCKPP_USE_STD_EXCEPTION
00047 : public MOCKPP_STD_NS::exception
00048 #endif
00049 {
00050 public:
00051
00057 Exception (unsigned srcline, const char* srcfile, const String &message);
00058
00062 virtual ~Exception() throw();
00063
00067 virtual String getMessage() const;
00068
00072 unsigned getSrcLine() const;
00073
00077 String getSrcFile() const;
00078
00079 #ifdef MOCKPP_USE_STD_EXCEPTION
00080
00086 virtual const char *what() const throw();
00087 #endif
00088
00089 private:
00090
00091 String message;
00092 unsigned srcline;
00093 String srcfile;
00094 #ifdef MOCKPP_USE_STD_EXCEPTION
00095 mutable MOCKPP_STL::string what_helper;
00096 #endif
00097 };
00098
00099
00100 MOCKPP_NS_END
00101
00102
00103 #endif // MOCKPP_ASSERTIONFAILED_H
00104