2025-03-20 18:27:02 +08:00
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-H2 | ESP32-H21 | ESP32-H4 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | --------- | -------- | --------- | -------- | -------- | -------- | -------- |
2022-05-20 17:50:08 +08:00
2018-09-04 10:20:29 +08:00
# Example: C++ exception handling
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example demonstrates usage of C++ exceptions in ESP-IDF.
2019-04-24 15:02:25 +02:00
By default, C++ exceptions support is disabled in ESP-IDF. It can be enabled using `CONFIG_COMPILER_CXX_EXCEPTIONS` configuration option.
2018-09-04 10:20:29 +08:00
2019-06-26 02:41:19 +08:00
In this example, the `sdkconfig.defaults` file sets the `CONFIG_COMPILER_CXX_EXCEPTIONS` option. This enables both compile time support (`-fexceptions` compiler flag) and run-time support for C++ exception handling.
2018-09-04 10:20:29 +08:00
2019-06-26 02:41:19 +08:00
The example source code declares a class which can throw exception from the constructor if the argument provided is equal to `0` . This is used to demonstrate that exceptions can be thrown and caught using standard C++ facilities.
**Note: Due to the use of the C++ exceptions, this example is written in C++ instead of C.**
2018-09-04 10:20:29 +08:00
## How to use example
2019-06-26 02:41:19 +08:00
### Hardware Required
This example should be able to run on any commonly available ESP32 development board.
### Configure the project
```
idf.py menuconfig
```
2018-09-04 10:20:29 +08:00
### Build and Flash
```
2019-06-23 11:54:31 +10:00
idf.py -p PORT flash monitor
2018-09-04 10:20:29 +08:00
```
2019-06-23 11:54:31 +10:00
(Replace PORT with the name of the serial port.)
2018-09-04 10:20:29 +08:00
(To exit the serial monitor, type ``Ctrl-]` `.)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
## Example Output
```
app_main starting
In constructor, arg=42
In constructor, arg=0
In destructor, m_arg=42
Exception caught: Exception in constructor
app_main done
```