exceptions.py 229 B

12345678
  1. class MetadataManagerException(Exception):
  2. pass
  3. class TooManyInstancesError(MetadataManagerException):
  4. def __init__(self, name: str):
  5. message = f"{name} should be a singleton."
  6. super().__init__(message)