From 1369c3fcb52c7e6500bf52ecfddf113747f05047 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 01 Oct 2023 10:52:07 -0400 Subject: New upstream version 0.2.7 --- (limited to 'gatt/errors.py') diff --git a/gatt/errors.py b/gatt/errors.py new file mode 100644 index 0000000..477bb88 --- /dev/null +++ b/gatt/errors.py @@ -0,0 +1,30 @@ +class AccessDenied(Exception): + pass + + +class Failed(Exception): + pass + + +class InProgress(Exception): + pass + + +class InvalidValueLength(Exception): + pass + + +class NotAuthorized(Exception): + pass + + +class NotReady(Exception): + pass + + +class NotPermitted(Exception): + pass + + +class NotSupported(Exception): + pass -- cgit v0.9.1