I\'m sure most Windows developers are familiar with this error message, usually when trying to mix 32- and 64-bit executables. In particular Python and Java can both get it.
The error message comes from Windows itself, you can see the complete list at System Error Codes (0-499). You translate an error code returned by the API into a message using FormatMessage, which has an optional Arguments
array; any %1
in the message will be replaced by the first element in this array. If nothing is passed for the arguments, the %1
will be left unchanged if the FORMAT_MESSAGE_IGNORE_INSERTS
flag was used or the FormatMessage
will fail if it wasn't (thanks to IInspectable for that information).
As an example of how this might get missed, consider code where an error code gets converted immediately to an exception. If the exception contains the error code but nothing else, then there is no context for knowing what to pass to FormatMessage
.