dots/exceptions.xsh

3 lines
128 B
Plaintext
Raw Normal View History

2022-02-08 05:05:06 +00:00
class CommandNotFoundException(Exception):
def __init__(self, command):
super().__init__(f"Command '{command}' not found.")