Variable: SYSTEM_ERRORS
constSYSTEM_ERRORS: {ACCESS_DENIED:"Access denied";CLEANUP_FAILED:"Cleanup operation failed";CONFIGURATION_ERROR:"Configuration error";INITIALIZATION_FAILED:"Initialization failed";INTERNAL_ERROR:"An internal error occurred";OPERATION_FAILED_NO_FALLBACK:"Operation failed and no fallback value provided";OPERATION_NOT_PERMITTED:"Operation not permitted";OPERATION_TIMEOUT:"Operation timed out";SERVICE_UNAVAILABLE:"Service temporarily unavailable"; }
Defined in: shared/utils/errorCatalog.ts:166
System-related error messages.
Type Declarationโ
ACCESS_DENIEDโ
readonlyACCESS_DENIED:"Access denied"="Access denied"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when resource access is denied
CLEANUP_FAILEDโ
readonlyCLEANUP_FAILED:"Cleanup operation failed"="Cleanup operation failed"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when cleanup operation fails
CONFIGURATION_ERRORโ
readonlyCONFIGURATION_ERROR:"Configuration error"="Configuration error"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when configuration is missing or invalid
INITIALIZATION_FAILEDโ
readonlyINITIALIZATION_FAILED:"Initialization failed"="Initialization failed"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when initialization fails
INTERNAL_ERRORโ
readonlyINTERNAL_ERROR:"An internal error occurred"="An internal error occurred"
Generic internal server error
OPERATION_FAILED_NO_FALLBACKโ
readonlyOPERATION_FAILED_NO_FALLBACK:"Operation failed and no fallback value provided"="Operation failed and no fallback value provided"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when operation fails and no fallback value provided
OPERATION_NOT_PERMITTEDโ
readonlyOPERATION_NOT_PERMITTED:"Operation not permitted"="Operation not permitted"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when operation is not permitted
OPERATION_TIMEOUTโ
readonlyOPERATION_TIMEOUT:"Operation timed out"="Operation timed out"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when operation times out
SERVICE_UNAVAILABLEโ
readonlySERVICE_UNAVAILABLE:"Service temporarily unavailable"="Service temporarily unavailable"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when service is unavailable
Remarksโ
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error messages for general system operations, infrastructure issues, and application-level errors.