Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CFileException::ThrowErrno
CFileException                              Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  static void ThrowErrno( int nErrno );
 
  Parameter   Description
 
  <nErrno>    An integer error code as defined in the run-time include
              file errno.h.
 
  Remarks
 
  This static function constructs a CFileException object corresponding to
  a given <nErrno> value, then throws the exception.
 
  Example
 
  #include <errno.h>
  CFileException::ThrowErrno( EACCES );  // "access denied"
 
 
  See Also
 
  CFileException::ThrowOsError
 
 
                                     -♦-