Share via


_CEDUMP_EXCEPTION (Compact 2013)

3/26/2014

This structure contains the exception record for the exception that caused the dump file to be generated.

Syntax

typedef struct _CEDUMP_EXCEPTION {
  ULONG32 ExceptionCode;
  ULONG32 ExceptionFlags;
  ULONG32 ExceptionRecord;
  ULONG32 ExceptionAddress;
  ULONG32 NumberParameters;
  ULONG32 ExceptionInformation [ EXCEPTION_MAXIMUM_PARAMETERS ];
} CEDUMP_EXCEPTION, *PCEDUMP_EXCEPTION;

Members

  • ExceptionCode
    Exception code.
  • ExceptionFlags
    Flag that indicates whether the operating system should continue processing. This member can be either zero, indicating a continuable exception, or EXCEPTION_NONCONTINUABLE, indicating a noncontinuable exception.

    An attempt to continue execution after a noncontinuable exception causes the EXCEPTION_NONCONTINUABLE_EXCEPTION exception.

  • ExceptionRecord
    Address of the Exception_Record that caused the dump file to be generated.
  • ExceptionAddress
    Address where the exception occurred**.**
  • NumberParameters
    Number of parameters in this record.
  • ExceptionInformation
    Parameters for this record.

    This member contains a maximum of 15 parameters of 4 bytes each.

Requirements

Header

dwcedump.h

See Also

Reference

Dump File Structures

Concepts

Error Reporting Dump Files