Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012
00013
00014
00015
00016
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef EXCEPTION_INCLUDED
00027 #define EXCEPTION_INCLUDED
00028
00029 #include "Message.h"
00030
00031 class Exception : public Message{
00032
00033 private:
00034
00035 static const char *_exceptionSalutation;
00036
00037 public:
00038
00039 Exception(const char *const methodName, const char *format,...);
00040
00041 };
00042
00043 #endif
00044