Skip to main content

Class: IpcError

Defined in: electron/preload/core/bridgeFactory.ts:113

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error class for IPC-related errors with enhanced context

Extends

Constructors

Constructor

new IpcError(message: string, channel: string, originalError?: Error, details?: UnknownRecord): IpcError

Defined in: electron/preload/core/bridgeFactory.ts:124

Parameters

message

string

channel

string

originalError?

Error

details?

UnknownRecord

Returns

IpcError

Overrides

Error.constructor

Properties

originalError

readonly originalError: Error | undefined

Defined in: electron/preload/core/bridgeFactory.ts:114


channel

readonly channel: string

Defined in: electron/preload/core/bridgeFactory.ts:116


details

readonly details: Readonly<UnknownRecord> | undefined

Defined in: electron/preload/core/bridgeFactory.ts:122

Optional structured metadata that provides additional IPC failure context.