15 lines
282 B
Python
15 lines
282 B
Python
class DeviceException(Exception):
|
|
"""Exception wrapping any communication errors with the device."""
|
|
|
|
|
|
class DeviceUpdateFailedException(DeviceException):
|
|
""" """
|
|
|
|
|
|
class InvalidValueException(ValueError):
|
|
""" """
|
|
|
|
|
|
class InvalidActionException(ValueError):
|
|
""" """
|