| 1234567 |
- class validator_exception(Exception):
- def __init__(self, name: str):
- super().__init__("Invalid property names: " + name + ".")
- class exists_exception(Exception):
- def __init__(self, name: str):
- super().__init__("Item with this " + name + " already in database.")
|