• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef FOUNDATION_APPEXECFWK_INTERFACES_INNERKITS_APPEXECFWK_BASE_INCLUDE_BUNDLE_ERRORS_H
17 #define FOUNDATION_APPEXECFWK_INTERFACES_INNERKITS_APPEXECFWK_BASE_INCLUDE_BUNDLE_ERRORS_H
18 
19 #include "errors.h"
20 
21 namespace OHOS {
22 namespace AppExecFwk {
23 constexpr ErrCode SUCCESS = 0;
24 constexpr ErrCode ERROR_PERMISSION_DENIED_ERROR = 201;
25 constexpr ErrCode ERROR_NOT_SYSTEM_APP = 202;
26 constexpr ErrCode ERROR_PARAM_CHECK_ERROR = 401;
27 constexpr ErrCode ERROR_SYSTEM_ABILITY_NOT_FOUND = 801;
28 constexpr ErrCode ERROR_BUNDLE_NOT_EXIST = 17700001;
29 constexpr ErrCode ERROR_MODULE_NOT_EXIST = 17700002;
30 constexpr ErrCode ERROR_ABILITY_NOT_EXIST = 17700003;
31 constexpr ErrCode ERROR_INVALID_USER_ID = 17700004;
32 constexpr ErrCode ERROR_INVALID_APPID = 17700005;
33 constexpr ErrCode ERROR_PERMISSION_NOT_EXIST = 17700006;
34 constexpr ErrCode ERROR_DEVICE_ID_NOT_EXIST = 17700007;
35 constexpr ErrCode ERROR_INSTALL_PARSE_FAILED = 17700010;
36 constexpr ErrCode ERROR_INSTALL_VERIFY_SIGNATURE_FAILED = 17700011;
37 constexpr ErrCode ERROR_INSTALL_HAP_FILEPATH_INVALID = 17700012;
38 constexpr ErrCode ERROR_INSTALL_HAP_SIZE_TOO_LARGE = 17700013;
39 constexpr ErrCode ERROR_INSTALL_INCORRECT_SUFFIX = 17700014;
40 constexpr ErrCode ERROR_INSTALL_MULTIPLE_HAP_INFO_INCONSISTENT = 17700015;
41 constexpr ErrCode ERROR_INSTALL_NO_DISK_SPACE_LEFT = 17700016;
42 constexpr ErrCode ERROR_INSTALL_VERSION_DOWNGRADE = 17700017;
43 constexpr ErrCode ERROR_INSTALL_DEPENDENT_MODULE_NOT_EXIST = 17700018;
44 constexpr ErrCode ERROR_UNINSTALL_PREINSTALL_APP_FAILED = 17700020;
45 constexpr ErrCode ERROR_INVALID_UID = 17700021;
46 constexpr ErrCode ERROR_INVALID_HAP_PATH = 17700022;
47 constexpr ErrCode ERROR_DEFAULT_APP_NOT_EXIST = 17700023;
48 constexpr ErrCode ERROR_PROFILE_NOT_EXIST = 17700024;
49 constexpr ErrCode ERROR_INVALID_TYPE = 17700025;
50 constexpr ErrCode ERROR_BUNDLE_IS_DISABLED = 17700026;
51 constexpr ErrCode ERROR_DISTRIBUTED_SERVICE_NOT_RUNNING = 17700027;
52 constexpr ErrCode ERROR_ABILITY_AND_TYPE_MISMATCH = 17700028;
53 constexpr ErrCode ERROR_ABILITY_IS_DISABLED = 17700029;
54 constexpr ErrCode ERROR_CLEAR_CACHE_FILES_UNSUPPORTED = 17700030;
55 
56 // bundle service exception
57 constexpr ErrCode ERROR_BUNDLE_SERVICE_EXCEPTION = 17700101;
58 
59 // zlib errCode
60 constexpr ErrCode ERR_ZLIB_SRC_FILE_INVALID = 900001;
61 constexpr ErrCode ERR_ZLIB_DEST_FILE_INVALID = 900002;
62 } // AppExecFwk
63 } // OHOS
64 #endif // FOUNDATION_APPEXECFWK_INTERFACES_INNERKITS_APPEXECFWK_BASE_INCLUDE_BUNDLE_ERRORS_H
65 
66