There actually IS an "Out of memory" message, as far as I know and that is the exact message.
It usually appears when a malloc() returns NULL, which happens when no memory can be allocated because it's either full or something else is preventing it.
That means that you don't have enough RAM, or that there is too much going on in your game.
A large map with a lot of polygons or groups could cause this, for example.