description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: bad_exception Class | bad_exception Class | 11/04/2016 |
|
| 5ae2c4ef-c7ad-4469-8a9e-a773e86bb000 |
The class describes an exception that can be thrown from an unexpected handler.
classbad_exception : publicexception {}; bad_exception(); bad_exception(const bad_exception&); bad_exception& operator=(const bad_exception&); constchar* what() constoverride;
unexpected will throw a bad_exception
instead of terminating or instead of calling another function specified with set_unexpected if bad_exception
is included in the throw list of a function.
The value returned by what
is an implementation-defined C string. None of the member functions throw any exceptions.
For a list of members inherited by the bad_exception
class, see exception Class.
See set_unexpected for an example of the use of unexpected throwing a bad_exception
.