mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-12-28 08:21:45 +01:00
14 lines
266 B
Python
14 lines
266 B
Python
|
__all__ = ["CBPiException","KettleException","SensorException","ActorException"]
|
||
|
|
||
|
|
||
|
class CBPiException(Exception):
|
||
|
pass
|
||
|
|
||
|
class KettleException(CBPiException):
|
||
|
pass
|
||
|
|
||
|
class SensorException(CBPiException):
|
||
|
pass
|
||
|
|
||
|
class ActorException(CBPiException):
|
||
|
pass
|