00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 #ifndef PANICHANDLER_HPP
00052 #define PANICHANDLER_HPP
00053
00054 #include <xercesc/util/XMemory.hpp>
00055
00056 XERCES_CPP_NAMESPACE_BEGIN
00057
00073 class PanicHandler
00074 {
00075 public:
00076
00079 enum PanicReasons
00080 {
00081 Panic_NoTransService
00082 , Panic_NoDefTranscoder
00083 , Panic_CantFindLib
00084 , Panic_UnknownMsgDomain
00085 , Panic_CantLoadMsgDomain
00086 , Panic_SynchronizationErr
00087 , Panic_SystemInit
00088
00089 , PanicReasons_Count
00090 };
00092
00093 protected:
00094
00098 PanicHandler(){};
00099
00100 public:
00101
00103 virtual ~PanicHandler(){};
00105
00123 virtual void panic(const PanicHandler::PanicReasons reason) = 0;
00125
00126 static const char* getPanicReasonString(const PanicHandler::PanicReasons reason);
00127
00128 private:
00129
00130
00131
00132 PanicHandler(const PanicHandler&);
00133
00135 PanicHandler& operator=(const PanicHandler&);
00136 };
00137
00138 XERCES_CPP_NAMESPACE_END
00139
00140 #endif