4 lines
95 B
Python
4 lines
95 B
Python
class NoExist(Exception):
|
|
def __init__(self,value):
|
|
self.value = value
|
|
pass |