craftbeerpi4-pione/venv3/lib/python3.7/site-packages/cbpi/api/exceptions.py
2021-03-03 23:49:41 +01: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