Skip to content
1 min read · 285 words

Interface: OrderingRepairException

Defined in: src/batteries/validation/exceptions.ts:36

A repair failure, retaining enough progress to reconcile a partially-mutated store.

Extends

Properties

PropertyTypeDescriptionOverridesInherited fromDefined in
cause?unknownThe persistence or context error that caused the repair to fail.BaseException.cause-src/batteries/validation/exceptions.ts:42
code?stringMachine-readable error code for narrowing exception-handling logic.-BaseException.codesrc/lib/classes/base_exception.ts:78
deletedIdsstring[]Group members deleted before a degraded replacement failed.--src/batteries/validation/exceptions.ts:40
fatal?booleanWhen true, the ADK treats this error as unrecoverable and should halt the agent loop.-BaseException.fatalsrc/lib/classes/base_exception.ts:88
groupIdsstring[]The original ids in the collision group being repaired.--src/batteries/validation/exceptions.ts:38
help?stringHuman-readable guidance for resolving or reporting this error.-BaseException.helpsrc/lib/classes/base_exception.ts:73
namestringName of the class that raised the exception.-BaseException.namesrc/lib/classes/base_exception.ts:68
status?numberHTTP status code associated with this error.-BaseException.statussrc/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

BaseException.[toStringTag]

Methods

toString()

ts
toString(): string;

Defined in: src/lib/classes/base_exception.ts:135

Returns a string representation of an object.

Returns

string

Inherited from

BaseException.toString