mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-21 19:18:41 +00:00
56 lines
1.1 KiB
Python
56 lines
1.1 KiB
Python
"""OpenAPI core exceptions module"""
|
|
import attr
|
|
|
|
|
|
class OpenAPIError(Exception):
|
|
pass
|
|
|
|
|
|
class OpenAPIParameterError(OpenAPIError):
|
|
pass
|
|
|
|
|
|
class MissingParameterError(OpenAPIParameterError):
|
|
"""Missing parameter error"""
|
|
pass
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class MissingParameter(MissingParameterError):
|
|
name = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Missing parameter (without default value): {0}".format(
|
|
self.name)
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class MissingRequiredParameter(MissingParameterError):
|
|
name = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Missing required parameter: {0}".format(self.name)
|
|
|
|
|
|
class OpenAPIRequestBodyError(OpenAPIError):
|
|
pass
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class MissingRequestBody(OpenAPIRequestBodyError):
|
|
request = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Missing required request body"
|
|
|
|
|
|
class OpenAPIResponseError(OpenAPIError):
|
|
pass
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class MissingResponseContent(OpenAPIResponseError):
|
|
response = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Missing response content"
|