rommapp_romm/backend/exceptions/config_exceptions.py

8 lines
251 B
Python

class ConfigNotWritableException(Exception):
def __init__(self):
self.message = "Config file is not writable. Check config.yml permissions"
super().__init__(self.message)
def __repr__(self) -> str:
return self.message