4 lines
102 B
Python
4 lines
102 B
Python
class NotFound(Exception):
|
|
def __init__(self, message="NotFound"):
|
|
self.message = message
|