pwdlapiV1 / beta /shellLogic /logicError.py
AkshitShubham's picture
Upload folder using huggingface_hub
6309782 verified
raw
history blame contribute delete
174 Bytes
class commandNotFound(Exception):
def __init__(self, command):
self.command = command
def __str__(self):
return f"Command '{self.command}' not found"