Home > Enterprise >  What does "Exception thrown at 0x00007FF651C0A1CA in CK2game.exe: 0xC0000005:" mean?
What does "Exception thrown at 0x00007FF651C0A1CA in CK2game.exe: 0xC0000005:" mean?

Time:01-04

Exception thrown at 0x00007FF651C0A1CA in CK2game.exe: 0xC0000005: Access violation reading location 0x00000148F5AFFDE0.

Or how do I interpret this? Specifically, what do 0x00007FF651C0A1CA, 0xC0000005, and 0x00000148F5AFFDE0 mean?

CodePudding user response:

although I can't tell what it means I can tell some things by the format, in this case, 0x00007FF651C0A1CA means the place where the error occurs in ck2game.exe and 0xC0000005 is the error. hope that helps a little bit, I'll look more into it.

CodePudding user response:

The program start address and function table locations are variable, however, the error is runtime and most likely means that an instruction at 0x00007FF651C0A1CA attempted to access a memory address that had been deallocated or is not within the accessible memory range for that process.

  • Related