summaryrefslogtreecommitdiff
path: root/sensor/patchedBLE/src/BLEExceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'sensor/patchedBLE/src/BLEExceptions.h')
-rw-r--r--sensor/patchedBLE/src/BLEExceptions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sensor/patchedBLE/src/BLEExceptions.h b/sensor/patchedBLE/src/BLEExceptions.h
index 369fcaf..ea9db85 100644
--- a/sensor/patchedBLE/src/BLEExceptions.h
+++ b/sensor/patchedBLE/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";
}
};