4 lines
102 B
Python
4 lines
102 B
Python
class ObjectNotFoundException(Exception):
|
|
def __init__(self, name: str):
|
|
self.name = name
|