pwdlBackendv2 / beta /shellLogic /logicError.py
AkshitShubham's picture
Upload folder using huggingface_hub
79b2aa4 verified
Raw
History Blame Contribute Delete
179 Bytes
class commandNotFound(Exception):
def __init__(self, command):
self.command = command
def __str__(self):
return f"Command '{self.command}' not found"