Allow reading the secret from a file

This commit is contained in:
2025-04-21 14:19:20 +02:00
parent 98a329ed74
commit 89d38f493b
2 changed files with 38 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
class ConfigurationException(Exception):
"""
Exception that is raised when there is an issue with
the configuration.
"""
def __init__(self, msg: str):
super().__init__(msg)