Exceptions handling
Posted on Sat 17 October 2020 in Developer
In order to find and resolve bugs in the source code we are required to follow certain coding conduct when developing software.
- It is forbidden to catch all exceptions by using, catch-everything kind of try/catch blocks.
- Only use
RuntimeWarningwhen exceptions are meant to be intercepted. - Only use
RuntimeError …
Continue reading