File size: 174 Bytes
6309782
 
 
 
 
0f0a387
1
2
3
4
5
6
class commandNotFound(Exception):
    def __init__(self, command):
        self.command = command

    def __str__(self):
        return f"Command '{self.command}' not found"