blob: 38a822d38e39d3b601e3b33a74f43132821da50b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-FileCopyrightText: © 2020 The freestyle-hid Authors
# SPDX-License-Identifier: Apache-2.0
class HIDError(Exception):
"""Errors related to the HID access process."""
class ConnectionError(Exception):
"""Errors related to Session establishment."""
class ChecksumError(Exception):
"""Errors related to the transmission checksums."""
class CommandError(Exception):
"""Errors related to the command stream."""
|