Skip to main content

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:295

IPC (Inter-Process Communication) error messages.

Type Declarationโ€‹

INVALID_RESPONSE_FORMATโ€‹

readonly INVALID_RESPONSE_FORMAT: "Invalid IPC response format" = "Invalid IPC response format";

Error when IPC response format is invalid

IPC_OPERATION_FAILEDโ€‹

readonly IPC_OPERATION_FAILED: "Operation failed" = "Operation failed";

Error when IPC operation fails

VALIDATION_FAILEDโ€‹

readonly VALIDATION_FAILED: "IPC validation failed" = "IPC validation failed";

Error when IPC validation fails

Remarksโ€‹

Error messages for IPC operations, validation, and communication between main and renderer processes.