mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 09:17:48 +01:00
15 lines
267 B
Python
15 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
|