5 lines
154 B
Python
5 lines
154 B
Python
class cookieError(Exception):
|
|
def __init__(self, info):
|
|
self.info = info
|
|
def __str__(self):
|
|
return repr(self.info) |