Interface: OrderingRepairException
Defined in: src/batteries/validation/exceptions.ts:36
A repair failure, retaining enough progress to reconcile a partially-mutated store.
Extends
Properties
| Property | Type | Description | Overrides | Inherited from | Defined in |
|---|---|---|---|---|---|
cause? | unknown | The persistence or context error that caused the repair to fail. | BaseException.cause | - | src/batteries/validation/exceptions.ts:42 |
code? | string | Machine-readable error code for narrowing exception-handling logic. | - | BaseException.code | src/lib/classes/base_exception.ts:78 |
deletedIds | string[] | Group members deleted before a degraded replacement failed. | - | - | src/batteries/validation/exceptions.ts:40 |
fatal? | boolean | When true, the ADK treats this error as unrecoverable and should halt the agent loop. | - | BaseException.fatal | src/lib/classes/base_exception.ts:88 |
groupIds | string[] | The original ids in the collision group being repaired. | - | - | src/batteries/validation/exceptions.ts:38 |
help? | string | Human-readable guidance for resolving or reporting this error. | - | BaseException.help | src/lib/classes/base_exception.ts:73 |
name | string | Name of the class that raised the exception. | - | BaseException.name | src/lib/classes/base_exception.ts:68 |
status? | number | HTTP status code associated with this error. | - | BaseException.status | src/lib/classes/base_exception.ts:83 |
Accessors
[toStringTag]
Get Signature
ts
get toStringTag: string;Defined in: src/lib/classes/base_exception.ts:131
Tag used by Object.prototype.toString — reports the concrete exception class name.
Returns
string
Inherited from
Methods
toString()
ts
toString(): string;Defined in: src/lib/classes/base_exception.ts:135
Returns a string representation of an object.
Returns
string