mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-29 10:14:15 +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
|