dots/xsh/exceptions.xsh

3 lines
No EOL
128 B
Text

class CommandNotFoundException(Exception):
def __init__(self, command):
super().__init__(f"Command '{command}' not found.")