I’m throwing ArgumentNullException, but the method OnThreadException is called.
Why?
Is OnThreadException called after throwing any exception?
I work in Delphi-Prism.
How can I change this?
I’m throwing ArgumentNullException, but the method OnThreadException is called. Why? Is OnThreadException called after
Share
OnThreadExceptionwill be called if an exception is thrown in a Windows Forms UI thread and not otherwise caught. What are you expecting to catch the exception?