3 lines
110 B
Python
3 lines
110 B
Python
class PriceNotFound(Exception):
|
|
def __init__(self, identifier=None):
|
|
self.identifier = identifier
|