ErrorHandlerMacros.h File Reference
This graph shows which files directly or indirectly include this file:
![]() Go to the source code of this file.
Define Documentation
Value: { \ char aTmpBuff[MAX_PATH]; \ sprintf(aTmpBuff,"Class: %s Method %s ",GetClassName().c_str(),METHOD,FORMAT,DATA); \ WriteError(aTmpBuff); \ } Definition at line 48 of file ErrorHandlerMacros.h.
Value: { \ char aTmpBuff[MAX_PATH]; \ sprintf(aTmpBuff,"Class: %s Method %s ",CLS,METHOD,FORMAT,DATA); \ WriteError(aTmpBuff); \ } Definition at line 64 of file ErrorHandlerMacros.h.
Value: { \ char aTmpBuff[MAX_PATH]; \ sprintf(aTmpBuff,"Class: %s Method %s ",GetClassName().c_str(),METHOD,FORMAT,DATA); \ WriteMessage(aTmpBuff); \ } Definition at line 40 of file ErrorHandlerMacros.h.
Value: { \ char aTmpBuff[MAX_PATH]; \ sprintf(aTmpBuff,"Class: %s Method %s ",CLS,METHOD,FORMAT,DATA); \ WriteMessage(aTmpBuff); \ } Definition at line 56 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ ReportError(METHOD_NAME);\ } Definition at line 72 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ ReportError(METHOD_NAME);\ throw;\ } Definition at line 133 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ ReportError(METHOD_NAME);\ return RETURN_VALUE;\ } Definition at line 81 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ CErrorHandler::ReportStaticError(CLASS_NAME,METHOD_NAME);\ } Definition at line 92 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ CErrorHandler::ReportStaticError(CLASS_NAME,METHOD_NAME);\ throw;\ } Definition at line 144 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Get the last error*/\ CErrorHandler::ReportStaticError(CLASS_NAME,METHOD_NAME);\ return RETURN_VALUE;\ } Definition at line 101 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Can't do anything to avoid circular catch*/\ /*assert(0);*/\ } Definition at line 112 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Can't do anything to avoid circular catch*/\ /*assert(0);*/\ throw;\ } Definition at line 156 of file ErrorHandlerMacros.h.
Value: catch (...)\ {\ /*Can't do anything to avoid circular catch*/\ /*assert(0);*/\ return RETURN_VALUE;\ } Definition at line 122 of file ErrorHandlerMacros.h.
|