Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 1.9 KB

cmemoryexception-class.md

File metadata and controls

62 lines (39 loc) · 1.9 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: CMemoryException Class
CMemoryException Class
11/04/2016
CMemoryException
AFX/CMemoryException
AFX/CMemoryException::CMemoryException
CMemoryException [MFC], CMemoryException
9af0ed57-d12a-45ca-82b5-c910a60f7edf

CMemoryException Class

Represents an out-of-memory exception condition.

Syntax

class CMemoryException : public CSimpleException

Members

Public Constructors

Name Description
CMemoryException::CMemoryException Constructs a CMemoryException object.

Remarks

No further qualification is necessary or possible. Memory exceptions are thrown automatically by new. If you write your own memory functions, using malloc, for example, then you are responsible for throwing memory exceptions.

For more information on CMemoryException, see the article Exception Handling (MFC).

Inheritance Hierarchy

CObject

CException

CSimpleException

CMemoryException

Requirements

Header: afx.h

CMemoryException::CMemoryException

Constructs a CMemoryException object.

CMemoryException();

Remarks

Do not use this constructor directly, but rather call the global function AfxThrowMemoryException. this global function can succeed in an out-of-memory situation because it constructs the exception object in previously allocated memory. for more information about exception processing, see the article exceptions.

See also

CException Class
Hierarchy Chart