dots/exceptions.xsh

3 lines
128 B
Plaintext

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