Example #1
0
EOSExtException::EOSExtException(TObjectClassId Kind, const UnicodeString & Msg, intptr_t LastError) :
  ExtException(Kind, Msg, SysErrorMessageForError(LastError))
{
}
Example #2
0
UnicodeString LastSysErrorMessage()
{
  return SysErrorMessageForError(GetLastError());
}
Example #3
0
EOSExtException::EOSExtException(const UnicodeString & Msg, intptr_t LastError) :
  ExtException(OBJECT_CLASS_EOSExtException, Msg, SysErrorMessageForError(LastError))
{
}
Example #4
0
EOSExtException::EOSExtException(const UnicodeString & Msg, int LastError) :
  ExtException(Msg, SysErrorMessageForError(LastError))
{
}