Filex.cpp line 117 -> Exception Unhandled

  • Thread starter Thread starter Altun Murat
  • Start date Start date
A

Altun Murat

Guest
/////////////////////////////////////////////////////////////////////////////
// CFileException helpers

void __declspec(noreturn) AFXAPI AfxThrowFileException(int cause, LONG lOsError,
LPCTSTR lpszFileName /* == NULL */)
{
#ifdef _DEBUG
LPCSTR lpsz;
if (cause >= 0 && cause < _countof(rgszCFileExceptionCause))
lpsz = rgszCFileExceptionCause[cause];
else
lpsz = szUnknown;
TRACE(traceAppMsg, 0, _T("CFile exception: %hs, File %Ts, OS error information = %ld.\n"),
lpsz, (lpszFileName == NULL) ? _T("Unknown") : lpszFileName, lOsError);
#endif
THROW(new CFileException(cause, lOsError, lpszFileName));
}

Error -> Unhandled exception at 0x75D0FD62 in *.exe: Microsoft C++ exception: CFileException at memory location 0x0053F468.

Continue reading...
 
Back
Top