Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Error

Base class for all SDK-raised exceptions.

Definition

class Error(Exception):
    """Base class for all SDK-raised exceptions."""

Notes

  • from dango.utils.error import Error is the safe outer except for any operation that touches the SDK.
  • Caller-bug exceptions (TypeError, ValueError, RuntimeError) are NOT Error subclasses — they indicate a bug at the call site, not a runtime SDK failure.

See also