Skip to main content

Variable: SYSTEM_ERRORS

const SYSTEM_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โ€‹

readonly ACCESS_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โ€‹

readonly CLEANUP_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โ€‹

readonly CONFIGURATION_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โ€‹

readonly INITIALIZATION_FAILED: "Initialization failed" = "Initialization failed"

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Error when initialization fails

INTERNAL_ERRORโ€‹

readonly INTERNAL_ERROR: "An internal error occurred" = "An internal error occurred"

Generic internal server error

OPERATION_FAILED_NO_FALLBACKโ€‹

readonly OPERATION_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โ€‹

readonly OPERATION_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โ€‹

readonly OPERATION_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โ€‹

readonly SERVICE_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.