9 lines
230 B
Python
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
|