openapi-core/openapi_core/schema/parameters/exceptions.py

41 lines
919 B
Python
Raw Normal View History

2018-04-18 10:39:03 +00:00
from openapi_core.schema.exceptions import OpenAPIMappingError
import attr
2018-04-18 10:39:03 +00:00
class OpenAPIParameterError(OpenAPIMappingError):
pass
@attr.s
2018-04-18 10:39:03 +00:00
class MissingParameter(OpenAPIParameterError):
name = attr.ib()
def __str__(self):
return "Missing parameter (without default value): {0}".format(self.name)
2018-04-18 10:39:03 +00:00
@attr.s
2018-04-18 10:39:03 +00:00
class MissingRequiredParameter(OpenAPIParameterError):
name = attr.ib()
def __str__(self):
return "Missing required parameter: {0}".format(self.name)
2018-04-18 10:39:03 +00:00
@attr.s
2018-04-18 10:39:03 +00:00
class EmptyParameterValue(OpenAPIParameterError):
name = attr.ib()
def __str__(self):
return "Value of parameter cannot be empty: {0}".format(self.name)
2018-04-18 10:39:03 +00:00
@attr.s
2018-04-18 10:39:03 +00:00
class InvalidParameterValue(OpenAPIParameterError):
name = attr.ib()
original_exception = attr.ib()
def __str__(self):
2018-09-13 12:57:59 +00:00
return "Invalid parameter value for `{0}`: {1}".format(self.name, self.original_exception)