* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef OHOS_BUNDLE_ERROR_H
#define OHOS_BUNDLE_ERROR_H
using ErrCode = int;
namespace OHOS {
namespace CJSystemapi {
namespace BundleManager {
constexpr ErrCode SUCCESS_CODE = 0;
constexpr ErrCode ERROR_PERMISSION_DENIED_ERROR = 201;
constexpr ErrCode ERROR_NOT_SYSTEM_APP = 202;
constexpr ErrCode ERROR_PARAM_CHECK_ERROR = 401;
constexpr ErrCode ERROR_SYSTEM_ABILITY_NOT_FOUND = 801;
constexpr ErrCode ERROR_BUNDLE_NOT_EXIST = 17700001;
constexpr ErrCode ERROR_MODULE_NOT_EXIST = 17700002;
constexpr ErrCode ERROR_ABILITY_NOT_EXIST = 17700003;
constexpr ErrCode ERROR_INVALID_USER_ID = 17700004;
constexpr ErrCode ERROR_INVALID_APPID = 17700005;
constexpr ErrCode ERROR_PERMISSION_NOT_EXIST = 17700006;
constexpr ErrCode ERROR_DEVICE_ID_NOT_EXIST = 17700007;
constexpr ErrCode ERROR_INSTALL_PARSE_FAILED = 17700010;
constexpr ErrCode ERROR_INSTALL_VERIFY_SIGNATURE_FAILED = 17700011;
constexpr ErrCode ERROR_INSTALL_HAP_FILEPATH_INVALID = 17700012;
constexpr ErrCode ERROR_INSTALL_MULTIPLE_HAP_INFO_INCONSISTENT = 17700015;
constexpr ErrCode ERROR_INSTALL_NO_DISK_SPACE_LEFT = 17700016;
constexpr ErrCode ERROR_INSTALL_VERSION_DOWNGRADE = 17700017;
constexpr ErrCode ERROR_INSTALL_DEPENDENT_MODULE_NOT_EXIST = 17700018;
constexpr ErrCode ERROR_UNINSTALL_PREINSTALL_APP_FAILED = 17700020;
constexpr ErrCode ERROR_INVALID_UID = 17700021;
constexpr ErrCode ERROR_INVALID_HAP_PATH = 17700022;
constexpr ErrCode ERROR_DEFAULT_APP_NOT_EXIST = 17700023;
constexpr ErrCode ERROR_PROFILE_NOT_EXIST = 17700024;
constexpr ErrCode ERROR_INVALID_TYPE = 17700025;
constexpr ErrCode ERROR_BUNDLE_IS_DISABLED = 17700026;
constexpr ErrCode ERROR_DISTRIBUTED_SERVICE_NOT_RUNNING = 17700027;
constexpr ErrCode ERROR_ABILITY_AND_TYPE_MISMATCH = 17700028;
constexpr ErrCode ERROR_ABILITY_IS_DISABLED = 17700029;
constexpr ErrCode ERROR_CLEAR_CACHE_FILES_UNSUPPORTED = 17700030;
constexpr ErrCode ERROR_INSTALL_HAP_OVERLAY_CHECK_FAILED = 17700031;
constexpr ErrCode ERROR_SPECIFIED_BUNDLE_NOT_OVERLAY_BUNDLE = 17700032;
constexpr ErrCode ERROR_SPECIFIED_MODULE_NOT_OVERLAY_MODULE = 17700033;
constexpr ErrCode ERROR_SPECIFIED_MODULE_IS_OVERLAY_MODULE = 17700034;
constexpr ErrCode ERROR_SPECIFIED_BUNDLE_IS_OVERLAY_BUNDLE = 17700035;
constexpr ErrCode ERROR_INSTALL_SHARE_APP_LIBRARY_NOT_ALLOWED = 17700036;
constexpr ErrCode ERROR_UNINSTALL_SHARE_APP_LIBRARY_IS_RELIED = 17700037;
constexpr ErrCode ERROR_UNINSTALL_SHARE_APP_LIBRARY_IS_NOT_EXIST = 17700038;
constexpr ErrCode ERROR_INSTALL_FILE_IS_SHARED_LIBRARY = 17700039;
constexpr ErrCode ERROR_UNINSTALL_BUNDLE_IS_SHARED_BUNDLE = 17700040;
constexpr ErrCode ERROR_DISALLOW_INSTALL = 17700041;
constexpr ErrCode ERROR_INSTALL_WRONG_DATA_PROXY_URI = 17700042;
constexpr ErrCode ERROR_INSTALL_WRONG_DATA_PROXY_PERMISSION = 17700043;
constexpr ErrCode ERROR_INSTALL_WRONG_MODE_ISOLATION = 17700044;
constexpr ErrCode ERROR_DISALLOW_UNINSTALL = 17700045;
constexpr ErrCode ERROR_INSTALL_ALREADY_EXIST = 17700047;
constexpr ErrCode ERROR_INSTALL_CODE_SIGNATURE_FAILED = 17700048;
constexpr ErrCode ERROR_INSTALL_SELF_UPDATE_BUNDLENAME_NOT_SAME = 17700049;
constexpr ErrCode ERROR_INSTALL_ENTERPRISE_BUNDLE_NOT_ALLOWED = 17700050;
constexpr ErrCode ERROR_INSTALL_SELF_UPDATE_NOT_MDM = 17700051;
constexpr ErrCode ERROR_INSTALL_DEBUG_BUNDLE_NOT_ALLOWED = 17700052;
constexpr ErrCode ERROR_NOT_APP_GALLERY_CALL = 17700053;
constexpr ErrCode ERROR_APPLICATION_UNINSTALL = 17700062;
constexpr ErrCode ERROR_INSTALL_FAILED_INCONSISTENT_SIGNATURE = 17700073;
constexpr ErrCode ERROR_APP_DISTRIBUTION_TYPE_NOT_ALLOW_INSTALL = 17700076;
constexpr ErrCode ERROR_BUNDLE_SERVICE_EXCEPTION = 17700101;
constexpr ErrCode ERROR_VERIFY_ABC = 17700201;
constexpr ErrCode ERROR_DELETE_ABC = 17700202;
constexpr ErrCode ERR_ZLIB_SRC_FILE_INVALID = 900001;
constexpr ErrCode ERR_ZLIB_DEST_FILE_INVALID = 900002;
constexpr ErrCode ERR_ZLIB_SRC_FILE_FORMAT_ERROR_OR_DAMAGED = 900003;
constexpr ErrCode ERR_ZLIB_SRC_FILE_DISABLED = 8521240;
constexpr ErrCode ERR_ZLIB_DEST_FILE_DISABLED = 8521241;
constexpr ErrCode ERR_ZLIB_SERVICE_DISABLED = 8521242;
constexpr ErrCode ERR_ZLIB_SRC_FILE_FORMAT_ERROR = 8521243;
constexpr ErrCode ERR_ZLIB_NO_SUCH_FILE_OR_MODE_ERROR = 17800002;
constexpr ErrCode ERR_ZLIB_ZSTREAM_ERROR = 17800004;
constexpr ErrCode ERR_ZLIB_DATA_ERROR = 17800005;
constexpr ErrCode ERR_ZLIB_MEMORY_ALLOC_FAILED = 17800006;
constexpr ErrCode ERR_ZLIB_BUFFER_ERROR = 17800007;
constexpr ErrCode ERR_ZLIB_INTERNAL_STRUCT_ERROR = 17800009;
}
}
}
#endif