mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 11:09:53 +00:00
33 lines
521 B
Python
33 lines
521 B
Python
from openapi_core.schema.exceptions import OpenAPIMappingError
|
|
|
|
|
|
class OpenAPISchemaError(OpenAPIMappingError):
|
|
pass
|
|
|
|
|
|
class NoValidSchema(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class UndefinedItemsSchema(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class InvalidSchemaValue(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class UndefinedSchemaProperty(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class MissingSchemaProperty(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class NoOneOfSchema(OpenAPISchemaError):
|
|
pass
|
|
|
|
|
|
class MultipleOneOfSchema(OpenAPISchemaError):
|
|
pass
|