|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
EXCEPTION_RECORD
The EXCEPTION_RECORD structure describes an exception.
typedef struct _EXCEPTION_RECORD { // exr
DWORD ExceptionCode;
DWORD ExceptionFlags;
struct _EXCEPTION_RECORD *ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
DWORD ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD;
Members
ExceptionCode
Specifies the reason the exception occurred. This is the code generated by a
hardware exception, or the code specified in the RaiseException function for a software-generated exception. Following are the exception
codes likely to occur due to common programming errors:
EXCEPTION_ACCESS_VIOLATION
|
|
| The thread tried to read from or write to a virtual address for which it does
not have the appropriate access.
|
EXCEPTION_ARRAY_BOUNDS_EXCEEDED
|
|
| The thread tried to access an array element that is out of bounds and the
underlying hardware supports bounds checking.
|
| A breakpoint was encountered.
|
EXCEPTION_DATATYPE_MISALIGNMENT
|
|
| The thread tried to read or write data that is misaligned on hardware that
does not provide alignment. For example, 16-bit values must be aligned on 2-byte
boundaries; 32-bit values on 4-byte boundaries, and so on.
|
EXCEPTION_FLT_DENORMAL_OPERAND
|
|
| One of the operands in a floating-point operation is denormal. A denormal
value is one that is too small to represent as a standard floating-point value.
|
EXCEPTION_FLT_DIVIDE_BY_ZERO
|
|
| The thread tried to divide a floating-point value by a floating-point divisor
of zero.
|
EXCEPTION_FLT_INEXACT_RESULT
|
|
| The result of a floating-point operation cannot be represented exactly as a
decimal fraction.
|
EXCEPTION_FLT_INVALID_OPERATION
|
|
| This exception represents any floating-point exception not included in this
list.
|
| The exponent of a floating-point operation is greater than the magnitude
allowed by the corresponding type.
|
EXCEPTION_FLT_STACK_CHECK
|
|
| The stack overflowed or underflowed as the result of a floating-point
operation.
|
| The exponent of a floating-point operation is less than the magnitude allowed
by the corresponding type.
|
EXCEPTION_ILLEGAL_INSTRUCTION
|
|
| The thread tried to execute an invalid instruction.
|
| The thread tried to access a page that was not present, and the system was
unable to load the page. For example, this exception might occur if a network
connection is lost while running a program over the network.
|
EXCEPTION_INT_DIVIDE_BY_ZERO
|
|
| The thread tried to divide an integer value by an integer divisor of zero.
|
| The result of an integer operation caused a carry out of the most significant
bit of the result.
|
EXCEPTION_INVALID_DISPOSITION
|
|
| An exception handler returned an invalid disposition to the exception
dispatcher. Programmers using a high-level language such as C should never encounter
this exception.
|
EXCEPTION_NONCONTINUABLE_EXCEPTION
|
|
| The thread tried to continue execution after a noncontinuable exception
occurred.
|
EXCEPTION_PRIV_INSTRUCTION
|
|
| The thread tried to execute an instruction whose operation is not allowed in
the current machine mode.
|
| A trace trap or other single-instruction mechanism signaled that one
instruction has been executed.
|
| The thread used up its stack.
|
Another exception code is likely to occur when debugging console processes. It
does not arise because of a programming error. The DBG_CONTROL_C exception
code occurs when CTRL+C is input to a console process that handles CTRL+C signals and is being debugged. This exception code is not meant to be handled
by applications. It is raised only for the benefit of the debugger, and is
raised only when a debugger is attached to the console process.
ExceptionFlags
Specifies the exception flags. This member can be either zero, indicating a
continuable exception, or EXCEPTION_NONCONTINUABLE indicating a noncontinuable
exception. Any attempt to continue execution after a noncontinuable exception
causes the EXCEPTION_NONCONTINUABLE_EXCEPTION exception.
ExceptionRecord
Points to an associated EXCEPTION_RECORD structure. Exception records can be chained together to provide additional
information when nested exceptions occur.
ExceptionAddress
Specifies the address where the exception occurred.
NumberParameters
Specifies the number of parameters associated with the exception. This is the
number of defined elements in the ExceptionInformation array.
ExceptionInformation
Specifies an array of additional 32-bit arguments that describe the exception.
The RaiseException function can specify this array of arguments. For most exception codes, the
array elements are undefined. For the following exception code, the array
elements are defined as follows:
Exception code
| Array contents
|
EXCEPTION_ACCESS_VIOLATION
|
|
| The first element of the array contains a read-write flag that indicates the
type of operation that caused the access violation. If this value is zero, the
thread attempted to read the inaccessible data. If this value is 1, the thread
attempted to write to an inaccessible address.
|
| The second array element specifies the virtual address of the inaccessible
data.
|
See Also
EXCEPTION_DEBUG_INFO, EXCEPTION_POINTERS, GetExceptionInformation, RaiseException, UnhandledExceptionFilter
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|