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