openapi-core/openapi_core/templating/responses/exceptions.py
2021-03-31 16:17:40 +01:00

18 lines
405 B
Python

import attr
from openapi_core.exceptions import OpenAPIError
class ResponseFinderError(OpenAPIError):
"""Response finder error"""
@attr.s(hash=True)
class ResponseNotFound(ResponseFinderError):
"""Find response error"""
http_status = attr.ib()
responses = attr.ib()
def __str__(self):
return "Unknown response http status: {0}".format(
str(self.http_status))