Skip to content
1 min read · 219 words

Interface: OrderingViolationException

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

A blocking ordering exception enriched with the complete violation list.

Extends

Properties

PropertyTypeDescriptionInherited fromDefined in
code?stringMachine-readable error code for narrowing exception-handling logic.BaseException.codesrc/lib/classes/base_exception.ts:78
fatal?booleanWhen true, the ADK treats this error as unrecoverable and should halt the agent loop.BaseException.fatalsrc/lib/classes/base_exception.ts:88
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
violationsBlockingOrderingViolation[]Blocking violations that caused the dispatch rejection.-src/batteries/validation/exceptions.ts:32

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