Update error codes when process exiting the gemini cli (#13728)

This commit is contained in:
Megha Bansal
2025-11-26 08:13:21 +05:30
committed by GitHub
parent d2a6cff4df
commit d97bbd5324
12 changed files with 307 additions and 192 deletions

View File

@@ -0,0 +1,13 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export const ExitCodes = {
SUCCESS: 0,
FATAL_AUTHENTICATION_ERROR: 41,
FATAL_INPUT_ERROR: 42,
FATAL_CONFIG_ERROR: 52,
FATAL_CANCELLATION_ERROR: 130,
} as const;