Python exceptional handling
Python exceptional handling:
Python gives the 2 best features to deal with any unexpected error in your Program. Every language has its way to handle the exception accordingly.
List of Standard Exceptions:
| Sr.No. | Exception Name & Description |
|---|---|
| 1 | Exception = This is base class for all exceptions |
| 2 | StopIteration = This exception is raised when the next() method of an iterator does not point to any object. |
| 3 | SystemExit = This exception is raised by the sys.exit() function. |
| 4 | StandardError = This is the Base class for all built-in exceptions except StopIteration and SystemExit. |
| 5 | ArithmeticError =This is the Base class for all errors that occur for numeric calculation. |
| 6 | OverflowError =This occur when a calculation exceeds maximum limit for a numeric type. |
| 7 | FloatingPointError =It is raised when a floating point calculation fails. |
| 8 | ZeroDivisionError =It is raised when division or modulo by zero takes place for all numeric types. |
| 9 | AssertionError =It is basically raised in case of failure of the Assert statement. |
| 10 | AttributeError =It is raised in case of failure of attribute reference or assignment. |
| 11 | EOFError =This is raised when there is no input from either the raw_input() or input() function and the end of file is reached. |
| 12 | ImportError =It is Raised when an import statement fails. |
| 13 | KeyboardInterrupt =It is raised when the user interrupts program execution, usually by pressing Ctrl+c. |
| 14 | LookupErrorBase =It is the class for all lookup errors. |
| 15 | IndexError =It is raised when an index is not found in a sequence. |
| 16 | KeyError =It is raised when the specified key is not found in the dictionary. |
| 17 | NameError =It is Raised when an identifier is not found in the local or global namespace. |
| 18 | UnboundLocalError =It is raised when trying to access a local variable in a function or method but no value has been assigned to it. |
| 19 | EnvironmentError =It is the Base class for all exceptions that occur outside the Python environment. |
| 20 | IOError =It is raised when an input/ output operation fails, such as the print statement or the open() function when trying to open a file that does not exist. |
| 21 | IOError =It is Raised for operating system-related errors. |
| 22 | SyntaxError =It is Raised when there is an error in Python syntax. |
| 23 | IndentationError =It is Raised when indentation is not specified properly. |
| 24 | SystemError =It is Raised when the interpreter finds an internal problem, but when this error is encountered the Python interpreter does not exit. |
| 25 | SystemExit =It is raised when Python interpreter is quit by using the sys.exit() function. If not handled in the code, causes the interpreter to exit. |
| 26 | TypeError =It is Raised when an operation or function is attempted that is invalid for the specified data type. |
| 27 | ValueError =It is raised when the built-in function for a data type has the valid type of arguments, but the arguments have invalid values specified. |
| 28 | RuntimeError =It is Raised when a generated error does not fall into any category. |
| 29 | NotImplementedError = It is raised when an abstract method that needs to be implemented in an inherited class is not actually implemented. |
