I need to catch Integer divide by zero and access violation reading or writing a protected memory and display my own dialog, and do something approprate. These exception can not be catched by try {} catch {} mechanism because hardware generates these exceptions.
How can I catch there exceptions?
Any suggestions or reference to related articles appreciated
mr.abzadeh
I need to catch Integer divide by zero and access violation reading or writing
Share
It’s strange not to have the possibility to catch these exceptions. but if it’s like that, than i guess you can put your own validations and throw your own exceptions. But again, you may be missing something…