👇Download Article👇
https://www.ijert.org/handling-unhand...
IJERTV10IS070030
Handling Unhandled Exceptions in Python 3 using Dependency Injection (DI) or Inversion of Control (IoC)
Manasa Nageshkumar , Shivani Mandavkar , Shreya Santosh , Sumedh Pundkar
Programming languages are the basic foundation for the development of any software. There are many programming languages existing and each language has its own set of limitations and exceptions. An exception is an event, which occurs during the execution of a program, that disrupts the normal flow of the programs instructions. When an error occurs the build-in exception handler tries to solve the given exception. There are a set of methods and functions that handle these predefined errors and raise exception when these errors occur. Python supports its user to define user defined exceptions. There are situations where the program may not give us the expected output and also no exceptions are raised. Such conditions can be stated as unhandled exceptions. These conditions are not mentioned in any documentations. Identifying such exceptions and handling them is also an essential requirement. This paper deals with handling unhandled-exception using Dependency Injection or Inversion of Control.