Python Forum
Exception not thrown in python3
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Exception not thrown in python3
#3
surround your code with:
try:
    ...
except Exception as ex:
    # todo -- Use tkinter.messagebox here
    template = "An exception of type {0} occurred. arguments: \n{1!r}"
    message = template.format(type(ex).__name__, ex.args)
    print(message)
    raise Exception
to see what's being thrown
Reply


Messages In This Thread
Exception not thrown in python3 - by ONEoo7 - Apr-08-2017, 08:34 PM
RE: Exception not thrown in python3 - by wavic - Apr-08-2017, 09:13 PM
RE: Exception not thrown in python3 - by Larz60+ - Apr-08-2017, 09:23 PM
RE: Exception not thrown in python3 - by ONEoo7 - Apr-08-2017, 09:24 PM
RE: Exception not thrown in python3 - by wavic - Apr-08-2017, 09:26 PM
RE: Exception not thrown in python3 - by zivoni - Apr-08-2017, 09:36 PM
RE: Exception not thrown in python3 - by ONEoo7 - Apr-08-2017, 09:45 PM
RE: Exception not thrown in python3 - by snippsat - Apr-09-2017, 01:58 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  which exception should be thrown for a sequence of the wrong length? Skaperen 1 903 Jan-06-2023, 04:13 AM
Last Post: deanhystad
  Pytest API Post call thrown errors pyseeker 4 3,751 Dec-08-2019, 04:53 PM
Last Post: pyseeker
  Gnuradio python3 is not compatible python3 xmlrpc library How Can I Fix İt ? muratoznnnn 3 5,045 Nov-07-2019, 05:47 PM
Last Post: DeaD_EyE
  Invalid argument error thrown. pyseeker 4 8,716 Sep-10-2019, 07:03 PM
Last Post: pyseeker
  During handling of the above exception, another exception occurred Skaperen 7 27,082 Dec-21-2018, 10:58 AM
Last Post: Gribouillis
  pytest fixture in conftest.py thrown error while in the test file runs OzzieOzzum 1 4,038 Jul-31-2018, 12:12 PM
Last Post: OzzieOzzum
  [split] Teacher (thrown in at the deep end - help) Mr90 2 3,066 May-23-2018, 02:04 PM
Last Post: DeaD_EyE
  Teacher (thrown in at the deep end - help) Mr90 5 4,002 May-22-2018, 01:08 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020