RunnerErrorCategory enum
Categorized error reasons emitted by an AgentRunner.
Names mirror the Symphony app-server error categories so logs and snapshots stay consistent across runners.
Values
- codexNotFound → const RunnerErrorCategory
-
Coding agent executable was not found.
- invalidWorkspaceCwd → const RunnerErrorCategory
-
Working directory passed to the coding agent was invalid.
- responseTimeout → const RunnerErrorCategory
-
Synchronous request/response timeout.
- turnTimeout → const RunnerErrorCategory
-
Total turn timeout reached.
- portExit → const RunnerErrorCategory
-
Agent subprocess exited.
- responseError → const RunnerErrorCategory
-
Agent reported an explicit response error.
- turnFailed → const RunnerErrorCategory
-
Turn failed by agent contract.
- turnCancelled → const RunnerErrorCategory
-
Turn was cancelled by the agent.
- turnInputRequired → const RunnerErrorCategory
-
Agent requested user input we cannot satisfy.
- promptError → const RunnerErrorCategory
-
Prompt rendering failed before launch.
- emptyResponse → const RunnerErrorCategory
-
LLM provider returned no usable file contents.
- responseTooLarge → const RunnerErrorCategory
-
LLM provider response exceeded the configured byte cap.
- providerError → const RunnerErrorCategory
-
Underlying provider raised an exception.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
RunnerErrorCategory> - A constant List of the values in this enum, in order of their declaration.