8 #ifndef COMPONENTS_CPP_UTILS_BLEEXCEPTIONS_H_
9 #define COMPONENTS_CPP_UTILS_BLEEXCEPTIONS_H_
10 #include "sdkconfig.h"
12 #if CONFIG_CXX_EXCEPTIONS != 1
13 #error "C++ exception handling must be enabled within make menuconfig. See Compiler Options > Enable C++ Exceptions."
20 const char* what()
const throw () {
21 return "BLE Disconnected";
26 const char* what()
const throw () {
27 return "No such UUID";
Definition: BLEExceptions.h:25
Definition: BLEExceptions.h:19