CFileException::ThrowErrno

Syntax

static void ThrowErrno( int nErrno );

Parameters

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