mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
29 lines
630 B
Python
29 lines
630 B
Python
import attr
|
|
|
|
from openapi_core.schema.exceptions import OpenAPIMappingError
|
|
|
|
|
|
class OpenAPIParameterError(OpenAPIMappingError):
|
|
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)
|