mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
8 lines
251 B
Python
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
|