Skip to content

Interface: BusTransportError

Makaio Framework


Makaio Framework / bus-core / BusTransportError

Defined in: ../../../packages/bus-core/src/types/transports.ts:153

Structured error payload for transport responses.

optional code?: string

Defined in: ../../../packages/bus-core/src/types/transports.ts:157

Error code for programmatic handling (e.g., ‘IMPORT_CONFLICT’)


optional data?: Record<string, unknown>

Defined in: ../../../packages/bus-core/src/types/transports.ts:166

Additional error data (e.g., conflicts, orphans)


message: string

Defined in: ../../../packages/bus-core/src/types/transports.ts:155

Human-readable error message


optional subject?: string

Defined in: ../../../packages/bus-core/src/types/transports.ts:164

Subject this error pertains to. Preserved for NoHandlerError so that isNoHandlerErrorForSubject can match without fragile message-string comparisons after a serialize → deserialize round-trip.