| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | # (c) Nelen & Schuurmansfrom typing import Anyfrom typing import Optionalfrom typing import Unionfrom pydantic import create_modelfrom pydantic import ValidationErrorfrom pydantic.error_wrappers import ErrorWrapper__all__ = [    "AlreadyExists",    "Conflict",    "DoesNotExist",    "PermissionDenied",    "PreconditionFailed",    "BadRequest",    "Unauthorized",    "BadRequest",]class DoesNotExist(Exception):    def __init__(self, name: str, id: Optional[int] = None):        super().__init__()        self.name = name        self.id = id    def __str__(self):        if self.id:            return f"does not exist: {self.name} with id={self.id}"        else:            return f"does not exist: {self.name}"class Conflict(Exception):    def __init__(self, msg: Optional[str] = None):        super().__init__(msg)class AlreadyExists(Conflict):    def __init__(self, id: Optional[int] = None):        super().__init__(f"record with id={id} already exists")class PreconditionFailed(Exception):    def __init__(self, msg: str = "precondition failed", obj: Any = None):        super().__init__(msg)        self.obj = obj# pydantic.ValidationError needs some model; for us it doesn't matter# We do it the same way as FastAPI does it.request_model = create_model("Request")class BadRequest(ValidationError):    def __init__(self, err_or_msg: Union[ValidationError, str]):        if isinstance(err_or_msg, ValidationError):            errors = err_or_msg.raw_errors        else:            errors = [ErrorWrapper(ValueError(err_or_msg), "*")]        super().__init__(errors, request_model)    def __str__(self) -> str:        errors = self.errors()        if len(errors) == 1:            error = errors[0]            loc = "'" + ",".join([str(x) for x in error["loc"]]) + "' "            if loc == "'*' ":                loc = ""            return f"validation error: {loc}{error['msg']}"        return super().__str__()class Unauthorized(Exception):    passclass PermissionDenied(Exception):    pass
 |