mirror of
https://github.com/rommapp/romm.git
synced 2026-01-21 19:43:12 +08:00
8 lines
198 B
Python
8 lines
198 B
Python
class SchedulerException(Exception):
|
|
def __init__(self, message: str):
|
|
self.message = message
|
|
super().__init__(self.message)
|
|
|
|
def __repr__(self):
|
|
return self.message
|