File: exceptions.py

package info (click to toggle)
python-gardena-bluetooth 1.4.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: python: 594; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class GardenaBluetoothException(Exception):
    pass


class CharacteristicNoAccess(GardenaBluetoothException):
    pass


class CharacteristicNotFound(CharacteristicNoAccess):
    pass


class CommunicationFailure(GardenaBluetoothException):
    pass