openapi-core/openapi_core/deserializing/exceptions.py
2020-02-03 13:05:44 +00:00

14 lines
355 B
Python

import attr
from openapi_core.exceptions import OpenAPIError
@attr.s(hash=True)
class DeserializeError(OpenAPIError):
"""Deserialize operation error"""
value = attr.ib()
style = attr.ib()
def __str__(self):
return "Failed to deserialize value {value} with style {style}".format(
value=self.value, style=self.style)