' converting from source CP to intermediate UNICODE.
ICU has reported an error,
ICU_error_code
, when converting characters from the source code page to the intermediate Unicode. This is the first part of two-step process: Convert from source to intermediate Unicode, and then from intermediate Unicode to the target code page.
Common error codes include:
U_FILE_ACCESS_ERROR. Code page converter is missing.
U_INVALID_CHAR_FOUND. Typically character not present in target.
U_TRUNCATED_CHAR_FOUND. A multibyte character is incomplete.
U_ILLEGAL_CHAR_FOUND. Corrupt source data.
U_BUFFER_OVERFLOW_ERROR. Target buffer is not big enough.
Processing aborts.
Consult the ICU web site for the meaning of the ICU error code. To correct the problem, use the other error messages, verify that the correct code pages are being used and that the data is valid.