mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
17 lines
408 B
Python
17 lines
408 B
Python
import attr
|
|
|
|
from openapi_core.schema.exceptions import OpenAPIMappingError
|
|
|
|
|
|
class OpenAPIContentError(OpenAPIMappingError):
|
|
pass
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class MimeTypeNotFound(OpenAPIContentError):
|
|
mimetype = attr.ib()
|
|
availableMimetypes = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Mimetype not found: {0}. Valid mimetypes: {1}".format(
|
|
self.mimetype, self.availableMimetypes)
|