Open In App

EnvironmentError Exception in Python

Last Updated : 21 Aug, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report

EnvironmentError is the base class for errors that come from outside of Python (the operating system, file system, etc.). It is the parent class for IOError and OSError exceptions. 

  1. exception IOError - It is raised when an I/O operation (when a method of a file object ) fails. e.g "File not found" or "Disk Full".
  2. exception OSError - It is raised when a function returns a system-related error.

Any example of an IOError or OSError should also be an example of Environment Error.

Example 1 :

Python3
# importing the module
import sys

try:
    # an invalid path
    file = open("GeeksforGeeks.txt", 'r')
except Exception as e:
    print(e)
    print(sys.exc_info()[0])

Output
[Errno 2] No such file or directory: 'GeeksforGeeks.txt'
<class 'FileNotFoundError'>

Example 2 :

Python3
# importing the module
import os
import sys

try:
    for i in range(7):
        print(i)
        print(os.ttyname(i))
except Exception as e:
    print(e)
    print(sys.exc_info()[0])

Output
0
[Errno 25] Inappropriate ioctl for device
<class 'OSError'>

Example 3 :

Python3
# importing the module
import sys
import os

try:
    # an invalid path
    os.rmdir('GEEKS')
except Exception as e:
    print(e)
    print(sys.exc_info()[0])

Output
[Errno 2] No such file or directory: 'GEEKS'
<class 'FileNotFoundError'>

Article Tags :
Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy