Allow reading the secret from a file
This commit is contained in:
8
src/xmpp_api/exceptions/base.py
Normal file
8
src/xmpp_api/exceptions/base.py
Normal 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)
|
||||
Reference in New Issue
Block a user