Skip to content

exceptions

Class info

Classes

Name Children Inherits
ChainAbortedError
llmling_agent.tasks.exceptions
Agent chain was aborted by user.
    JobError
    llmling_agent.tasks.exceptions
    General task-related exception.
    JobRegistrationError
    llmling_agent.tasks.exceptions
    Task could not get registered.
      RunAbortedError
      llmling_agent.tasks.exceptions
      Run was aborted by user.
        ToolSkippedError
        llmling_agent.tasks.exceptions
        Tool execution was skipped by user.

          🛈 DocStrings

          ChainAbortedError

          Bases: JobError

          Agent chain was aborted by user.

          Source code in src/llmling_agent/tasks/exceptions.py
          18
          19
          class ChainAbortedError(JobError):
              """Agent chain was aborted by user."""
          

          JobError

          Bases: LLMLingError

          General task-related exception.

          Source code in src/llmling_agent/tasks/exceptions.py
          6
          7
          class JobError(LLMLingError):
              """General task-related exception."""
          

          JobRegistrationError

          Bases: JobError

          Task could not get registered.

          Source code in src/llmling_agent/tasks/exceptions.py
          22
          23
          class JobRegistrationError(JobError):
              """Task could not get registered."""
          

          RunAbortedError

          Bases: JobError

          Run was aborted by user.

          Source code in src/llmling_agent/tasks/exceptions.py
          14
          15
          class RunAbortedError(JobError):
              """Run was aborted by user."""
          

          ToolSkippedError

          Bases: JobError

          Tool execution was skipped by user.

          Source code in src/llmling_agent/tasks/exceptions.py
          10
          11
          class ToolSkippedError(JobError):
              """Tool execution was skipped by user."""