Source code for minos.api_gateway.common.exceptions

"""
Copyright (C) 2021 Clariteia SL

This file is part of minos framework.

Minos framework can not be copied and/or distributed without the express permission of Clariteia SL.
"""
from typing import (
    Any,
    Type,
)


[docs]class MinosException(Exception): """Exception class for import packages or modules""" __slots__ = "_message"
[docs] def __init__(self, error_message: str): self._message = error_message
def __repr__(self): return f"{type(self).__name__}(message={repr(self._message)})" def __str__(self) -> str: """represent in a string format the error message passed during the instantiation""" return self._message
[docs]class MinosImportException(MinosException): pass
[docs]class MinosProtocolException(MinosException): pass
[docs]class MinosMessageException(MinosException): pass
[docs]class MinosConfigException(MinosException): """Base config exception."""
[docs]class MinosConfigDefaultAlreadySetException(MinosConfigException): """Exception to be raised when some config is already set as default."""
[docs]class MinosRepositoryException(MinosException): """Base repository exception."""
[docs]class MinosRepositoryAggregateNotFoundException(MinosRepositoryException): """Exception to be raised when some aggregate is not found on the repository."""
[docs]class MinosRepositoryDeletedAggregateException(MinosRepositoryException): """Exception to be raised when some aggregate is already deleted from the repository."""
[docs]class MinosRepositoryManuallySetAggregateIdException(MinosRepositoryException): """Exception to be raised when some aggregate is trying to be created with a manually set id."""
[docs]class MinosRepositoryManuallySetAggregateVersionException(MinosRepositoryException): """Exception to be raised when some aggregate is trying to be created with a manually set version."""
[docs]class MinosRepositoryUnknownActionException(MinosRepositoryException): """Exception to be raised when some entry tries to perform an unknown action."""
[docs]class MinosRepositoryNonProvidedException(MinosRepositoryException): """Exception to be raised when a repository is needed but none is set."""
[docs]class MinosModelException(MinosException): """Exception to be raised when some mandatory condition is not satisfied by a model.""" pass
[docs]class EmptyMinosModelSequenceException(MinosModelException): """Exception to be raised when a sequence must be not empty, but it is empty.""" pass
[docs]class MultiTypeMinosModelSequenceException(MinosModelException): """Exception to be raised when a sequence doesn't satisfy the condition to have the same type for each item.""" pass
[docs]class MinosModelAttributeException(MinosException): """Base model attributes exception.""" pass
[docs]class MinosReqAttributeException(MinosModelAttributeException): """Exception to be raised when some required attributes are not provided.""" pass
[docs]class MinosTypeAttributeException(MinosModelAttributeException): """Exception to be raised when there are any mismatching between the expected and observed attribute type."""
[docs] def __init__(self, name: str, target_type: Type, value: Any): self.name = name self.target_type = target_type self.value = value super().__init__( f"The {repr(target_type)} expected type for {repr(name)} does not match with " f"the given data type: {type(value)}" )
[docs]class MinosMalformedAttributeException(MinosModelAttributeException): """Exception to be raised when there are any kind of problems with the type definition.""" pass
[docs]class MinosParseAttributeException(MinosModelAttributeException): """Exception to be raised when there are any kind of problems with the parsing logic."""
[docs] def __init__(self, name: str, value: Any, exception: Exception): self.name = name self.value = value self.exception = exception super().__init__(f"{repr(exception)} was raised while parsing {repr(name)} field with {repr(value)} value.")
[docs]class MinosAttributeValidationException(MinosModelAttributeException): """Exception to be raised when some fields are not valid."""
[docs] def __init__(self, name: str, value: Any): self.name = name self.value = value super().__init__(f"{repr(value)} value does not pass the {repr(name)} field validation.")