I am using MadExcept to debug my applications. It’s an excelent framework though when a exception ocurrs on a try finally block it still displays that ugly box and the user thinks the app has crashed.
How can i remove that ? Is there a way ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sounds like it’s working as designed. A try/finally block does not catch exceptions; it ensures that proper cleanup can be done even if an exception is raised.
If you want to handle an exception, you need to use a try/except block instead.