Uhr in der Küche.

unversionierte Dateien
This commit is contained in:
Olli Graf
2022-06-18 11:01:26 +02:00
parent a986d14fbc
commit 6876dab8df
4 changed files with 36 additions and 0 deletions

9
ConfigError.py Normal file
View File

@@ -0,0 +1,9 @@
class ConfigError(Exception):
def __init_(self,message):
self.message = message
super().__init(message)
def __str__(self):
return self.message