sp-essentials/essentials/Errors.py
2026-03-16 16:29:20 +01:00

9 lines
230 B
Python

class CommandNotFoundError(OSError):
def __init__(self, subject):
self.subject = subject
super().__init__(f"Command '{subject}' could not be found.")
class TorServiceInitializationError(Exception):
pass