forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
45 lines (31 loc) · 1.03 KB
/
exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from typing import Any, Sequence
class ValidationException(Exception):
"""
Base exception for all validation errors
"""
def __init__(self, errors: Sequence[Any]) -> None:
self._errors = errors
def errors(self) -> Sequence[Any]:
return self._errors
class RequestValidationError(ValidationException):
"""
Raised when the request body does not match the OpenAPI schema
"""
def __init__(self, errors: Sequence[Any], *, body: Any = None) -> None:
super().__init__(errors)
self.body = body
class ResponseValidationError(ValidationException):
"""
Raised when the response body does not match the OpenAPI schema
"""
def __init__(self, errors: Sequence[Any], *, body: Any = None) -> None:
super().__init__(errors)
self.body = body
class SerializationError(Exception):
"""
Base exception for all encoding errors
"""
class SchemaValidationError(ValidationException):
"""
Raised when the OpenAPI schema validation fails
"""