1 out of 1 rated this helpful - Rate this topic

Type-Safe Exception Handling

C++ exception handling supports type-safe exception handlers. C exceptions are always identified by an unsigned int. With C++ exception handling, you can specify that exceptions of a particular type (including C++ objects) are caught by a handler that matches the type of the exception being thrown.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.