harmony 鸿蒙Universal Error Codes
Universal Error Codes
201 Permission Denied
Error Message
Permission verification failed. The application does not have the permission required to call the API.
Description
This error code is reported when permission verification fails.
Possible Causes
The application calls an API without the required permission.
Solution
Check the permission required to call the API and make sure the application has the permission.
202 Permission Verification Failed for Calling a System API
Error Message
Permission verification failed. A non-system application calls a system API.
Description
This error code is reported when a non-system application failed the permission verification.
Possible Causes
The API called by the application is a system API.
Solution
Check whether any system API is called. Delete it if any.
401 Parameter Check Failed
Error Message
Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed.
Description
A mandatory parameter is left unspecified.
A parameter type is incorrect.
Parameter verification failed. Regardless of whether the API is synchronous or asynchronous, this type of error is generally thrown in synchronous mode.
Possible Causes
A mandatory parameter is not passed.
A parameter type is incorrect (Type Error).
The number of parameters is incorrect (Argument Count Error).
A null parameter is incorrect (Null Argument Error).
A parameter format is incorrect (Format Error).
A value range is incorrect (Value Range Error).
Solution
Make sure all the mandatory parameters are passed in and the types of the passed-in parameter are valid. If parameter verification fails, read the parameter specifications and locate the fault based on the possible causes.
801 API Not Supported
Error Message
Capability not supported. Failed to call the API due to limited device capabilities.
Description
The device does not support this API. Therefore, it cannot be called properly.
Possible Causes
The device supports Syscap associated with the API but does not support the API itself.
Solution
Do not use this API on the device. Alternatively, implement conditional checks in the code to mitigate the effects of the application running across various devices, particularly under abnormal circumstances.
你可能感兴趣的鸿蒙文章
harmony 鸿蒙Development References
harmony 鸿蒙API Reference Document Description
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦