craftbeerpi4-pione/cbpi/api/exceptions.py

15 lines
267 B
Python
Raw Permalink Normal View History

2019-01-05 20:43:48 +01:00
__all__ = ["CBPiException","KettleException","SensorException","ActorException"]
class CBPiException(Exception):
pass
class KettleException(CBPiException):
pass
class SensorException(CBPiException):
pass
class ActorException(CBPiException):
2019-08-16 21:36:55 +02:00
pass