Exception weirdness

Started by
0 comments, last by rowbot 24 years ago
Hi when I throw an exception in a function of my DDraw prog, I get a windows message box saying abnormal termination. I''m catching the right type of object where the function is called but it doesnt get there. Can anyone think of a reason for this? ro
Advertisement
2 ideas:

a) You are not actually catching it like you think you are. Check syntax, const-correctness, etc etc.
b) You are causing a separate, unhandled exception to be thrown in the process of catching the first one.

If you post some code, I may be able to give more advice.

This topic is closed to new replies.

Advertisement