00001 #ifndef ROOT_CORE_UTILS__EXCEPTION_MSG_H
00002 #define ROOT_CORE_UTILS__EXCEPTION_MSG_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <RootCoreUtils/Global.h>
00022
00023 #include <exception>
00024 #include <string>
00025
00026 namespace RCU
00027 {
00028 class ExceptionMsg : public std::exception
00029 {
00030
00031
00032
00033
00034
00035
00036 public:
00037 void testInvariant () const;
00038
00039
00040
00041
00042
00043
00044
00045
00046 public:
00047 ExceptionMsg (const char *const val_file, const unsigned val_line,
00048 const std::string& val_message);
00049
00050
00051
00052
00053 public:
00054 virtual ~ExceptionMsg () throw ();
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 public:
00065 virtual const char *what () const throw ();
00066
00067
00068
00069
00070
00071
00072
00074 private:
00075 const char *m_file;
00076 private:
00077 unsigned m_line;
00078
00080 private:
00081 std::string m_message;
00082 };
00083 }
00084
00085 #endif