Drawing and Display Error Codes
NOTE
This topic describes only module-specific error codes. For details about universal error codes, see Universal Error Codes.
25900001 Abnormal Parameter Value
Error Message
Parameter error. Possible causes: Incorrect parameter range.
Description
This error code is reported when the parameter value exceeds the allowable range.
Possible Causes
The parameter value exceeds the valid range. For example, an enumerated value exceeds the defined range.
Solution
Pass parameter values that meet the requirements in the API.
25900002 File Not Found
Error Message
File not found. The specified file does not exist or the path is incorrect.
Description
The file is not found. The specified file does not exist or the path is incorrect.
Possible Causes
- The file path is incorrect or the file does not exist.
- The file path case is incorrect.
Solution
- Configure a correct and valid file path.
- Ensure that the file path case is correct.
25900003 Failed to Open the File
Error Message
Failed to open file. The file cannot be opened due to permission or I/O issues.
Description
Failed to open the file. The file cannot be opened due to permission or I/O issues.
Possible Causes
- The user does not have the permission to read the file.
- The file is occupied by another process.
Solution
- Check the file permission and ensure that the file is readable.
- Ensure that the file is not occupied by another process.
25900004 Failed to Locate the File
Error Message
File seek failed. The system failed to reposition the file read pointer.
Description
Failed to locate the file. The system cannot reposition the file read pointer.
Possible Causes
The file type (such as pipe and socket) does not support random access.
Solution
Ensure that the file type supports random access.
25900005 Failed to Obtain the File Size
Error Message
Failed to get the file size. The system was unable to obtain the file size information.
Description
Failed to obtain the file size. The system cannot obtain the file size.
Possible Causes
The file type (such as pipe and socket) does not support size query.
Solution
Ensure that the file type supports size query.
25900006 Failed to Read the File
Error Message
Failed to read file. The file could not be read completely or contains unreadable data.
Description
Failed to read the file. The file cannot be completely read or contains unreadable data.
Possible Causes
- An I/O error occurs in the file.
- The memory is insufficient.
Solution
- Ensure that the disk or storage device is normal.
- Ensure that the memory is sufficient for reading.
25900007 Empty File
Error Message
Empty file. The specified file is empty.
Description
The specified file is empty.
Possible Causes
The file size is 0 bytes.
Solution
Ensure that the file size is greater than 0 bytes.
25900008 File Damaged
Error Message
Corrupted file. The file content is invalid or damaged and cannot be parsed.
Description
The file is damaged. The file content is invalid or damaged and cannot be parsed.
Possible Causes
- The file format is incorrect.
- The file content is damaged.
Solution
- Ensure that the file format is correct.
- Ensure that the file content is normal.