diff options
Diffstat (limited to 'src/BLEExceptions.h')
-rw-r--r-- | src/BLEExceptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BLEExceptions.h b/src/BLEExceptions.h index 369fcaf..ea9db85 100644 --- a/src/BLEExceptions.h +++ b/src/BLEExceptions.h @@ -17,13 +17,13 @@ class BLEDisconnectedException : public std::exception { - const char *what() const throw () { + const char* what() const throw () { return "BLE Disconnected"; } }; class BLEUuidNotFoundException : public std::exception { - const char *what() const throw () { + const char* what() const throw () { return "No such UUID"; } }; |