craftbeerpi4-pione/cbpi/api/exceptions.py

18 lines
339 B
Python
Raw Permalink Normal View History

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