LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Graphs
    • Functional API
    • Pregel
    • Checkpointing
    • Storage
    • Caching
    • Types
    • Runtime
    • Config
    • Errors
    • Constants
    • Channels
    • Agents
    LangGraph Checkpoint
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewGraphsFunctional APIPregelCheckpointingStorageCachingTypesRuntimeConfigErrorsConstantsChannelsAgents
    LangGraph Checkpoint
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    PythonlanggrapherrorsNodeTimeoutError
    Classā—Since v1.1

    NodeTimeoutError

    Copy
    NodeTimeoutError(
      self,
      node: str,
      timeout: float,
      elapsed: float
    )

    Bases

    TimeoutError

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    nodestr
    timeoutfloat
    elapsedfloat
    attribute
    node: str
    attribute
    timeout: float
    attribute
    elapsed: float

    Raised when a node invocation exceeds its configured timeout.

    Subclasses the built-in TimeoutError, so existing except TimeoutError handlers keep working. If the node has a retry_policy whose retry_on permits TimeoutError, the attempt will be retried.