Variable: IPC_ERRORS
const
IPC_ERRORS: {INVALID_RESPONSE_FORMAT
:"Invalid IPC response format"
;IPC_OPERATION_FAILED
:"Operation failed"
;VALIDATION_FAILED
:"IPC validation failed"
; }
Defined in: shared/utils/errorCatalog.ts:290
IPC (Inter-Process Communication) error messages.
Type Declarationโ
INVALID_RESPONSE_FORMATโ
readonly
INVALID_RESPONSE_FORMAT:"Invalid IPC response format"
="Invalid IPC response format"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when IPC response format is invalid
IPC_OPERATION_FAILEDโ
readonly
IPC_OPERATION_FAILED:"Operation failed"
="Operation failed"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when IPC operation fails
VALIDATION_FAILEDโ
readonly
VALIDATION_FAILED:"IPC validation failed"
="IPC validation failed"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when IPC validation fails
Remarksโ
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error messages for IPC operations, validation, and communication between main and renderer processes.