EnvironmentError是来自Python(操作系统,文件系统等)外部错误的基类。EnvironmentError Exception是StandarError类的子类。它是IOError和OSError异常的基类。与它的子类错误(如IOError和OSError)不同,它实际上并未引发。
IOError或OSError的任何示例也应该是Environment Error的示例。
import sys try: f = open ( "JohnDoe.txt", 'r' ) except Exception as e: print e print sys.exc_type
输出结果
[Errno 2] No such file or directory: 'JohnDoe.txt' <type 'exceptions.IOError'>