mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 11:09:53 +00:00
16 lines
340 B
Python
16 lines
340 B
Python
import attr
|
|
|
|
from openapi_core.schema.exceptions import OpenAPIMappingError
|
|
|
|
|
|
class OpenAPIServerError(OpenAPIMappingError):
|
|
pass
|
|
|
|
|
|
@attr.s(hash=True)
|
|
class InvalidServer(OpenAPIServerError):
|
|
full_url_pattern = attr.ib()
|
|
|
|
def __str__(self):
|
|
return "Invalid request server {0}".format(
|
|
self.full_url_pattern)
|