sp-essentials/essentials/Errors.py

10 lines
231 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