from sanic.exceptions import SanicException


class ValidationError(SanicException):
    status_code = 400


class InitError(SanicException): ...


class ExtensionNotFound(SanicException): ...
