craftbeerpi4-pione/cbpi/api/exceptions.py
2019-08-16 21:36:55 +02:00

14 lines
267 B
Python

__all__ = ["CBPiException","KettleException","SensorException","ActorException"]
class CBPiException(Exception):
pass
class KettleException(CBPiException):
pass
class SensorException(CBPiException):
pass
class ActorException(CBPiException):
pass