From 0dd73a8d01082a96f6cd845989787cbfef8ecb03 Mon Sep 17 00:00:00 2001 From: Sunggyu Choi Date: Thu, 23 Sep 2021 10:24:09 +0900 Subject: [PATCH] Add new custom error of cion module Change-Id: I2e6d2ca679e9c041013419541df1ce499030420d Signed-off-by: Sunggyu Choi --- include/private/tizen_error_private.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/private/tizen_error_private.h b/include/private/tizen_error_private.h index 5e1c25f..114e156 100644 --- a/include/private/tizen_error_private.h +++ b/include/private/tizen_error_private.h @@ -14,6 +14,8 @@ * limitations under the License. */ + + #ifndef __TIZEN_COMMON_ERROR_PRIVATE_H__ #define __TIZEN_COMMON_ERROR_PRIVATE_H__ @@ -528,6 +530,7 @@ static err_info err_list[] = { ERR_ENTRY("CKMC_ERROR_UNKNOWN", TIZEN_ERROR_KEY_MANAGER | 0xFF, "The error with unknown reason"), ERR_ENTRY("TELEPHONY_ERROR_OPERATION_FAILED", TIZEN_ERROR_TELEPHONY | 0x0001, "Operation failed"), ERR_ENTRY("TELEPHONY_ERROR_SIM_NOT_AVAILABLE", TIZEN_ERROR_TELEPHONY | 0x1001, "SIM is not available"), + ERR_ENTRY("CION_ERROR_OPERATION_FAILED", TIZEN_ERROR_CION | 0x01, "Operation failed"), ERR_ENTRY("METADATA_EXTRACTOR_ERROR_OPERATION_FAILED", TIZEN_ERROR_METADATA_EXTRACTOR | 0x01, "Invalid internal operation"), ERR_ENTRY("DEVICE_ERROR_NOT_INITIALIZED", TIZEN_ERROR_DEVICE | 0x13, "Not initialized"), ERR_ENTRY("APP_MANAGER_ERROR_NO_SUCH_APP", TIZEN_ERROR_APPLICATION_MANAGER | 0x01, "No such application"), -- 2.7.4