Source code for taimoe.platform.errors.internal_error

"""Internal error — 500 INTERNAL. Retryable."""

from __future__ import annotations

from ._base import TaimoeAPIError, _Retryable, _register_code, _register_status


[docs] @_register_status(500) @_register_code("INTERNAL") class InternalError(TaimoeAPIError, _Retryable): """The server hit an unexpected condition.""" default_code = "INTERNAL"