mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
a8f7f2d92f
Class has been activated but is not yet used Fix in mqtt actor power action setting
17 lines
339 B
Python
17 lines
339 B
Python
__all__ = ["CBPiException","KettleException","FermenterException","SensorException","ActorException"]
|
|
|
|
|
|
class CBPiException(Exception):
|
|
pass
|
|
|
|
class KettleException(CBPiException):
|
|
pass
|
|
|
|
class FermenterException(CBPiException):
|
|
pass
|
|
|
|
class SensorException(CBPiException):
|
|
pass
|
|
|
|
class ActorException(CBPiException):
|
|
pass
|