zoukankan      html  css  js  c++  java
  • [TimLinux] Python3.6 异常继承关系

    Python3.6 异常继承结构

    object
    └── BaseException
        ├── Exception
        │   ├── ArithmeticError
        │   │   ├── FloatingPointError
        │   │   ├── OverflowError
        │   │   └── ZeroDivisionError
        │   ├── AssertionError
        │   ├── AttributeError
        │   ├── BufferError
        │   ├── EnvironmentError -> OSError
        │   ├── EOFError
        │   ├── ImportError
        │   │   └── ModuleNotFoundError
        │   ├── IOError -> OSError
        │   ├── LookupError
        │   │   ├── IndexError
        │   │   └── KeyError
        │   ├── MemoryError
        │   ├── NameError
        │   │   └── UnboundLocalError
        │   ├── OSError
        │   │   ├── BlockingIOError
        │   │   ├── ChildProcessError
        │   │   ├── ConnectionError
        │   │   │   ├── BrokenPipeError
        │   │   │   ├── ConnectionAbortedError
        │   │   │   ├── ConnectionRefusedError
        │   │   │   └── ConnectionResetError
        │   │   ├── FileExistsError
        │   │   ├── FileNotFoundError
        │   │   ├── InterruptedError
        │   │   ├── IsDirectoryError
        │   │   ├── NotADirectoryError
        │   │   ├── PermissionError
        │   │   ├── ProcessLookupError
        │   │   └── TimeoutError
        │   ├── ReferenceError
        │   ├── RuntimeError
        │   │   ├── NotImplementedError
        │   │   └── RecursionError
        │   ├── StopAsyncIteration
        │   ├── StopIteration
        │   ├── SyntaxError
        │   │   └── IndentationError
        │   │       └── TabError
        │   ├── SystemError
        │   ├── TypeError
        │   ├── ValueError
        │   │   └── UnicodeError
        │   │       ├── UnicodeDecodeError
        │   │       ├── UnicodeEncodeError
        │   │       └── UnicodeTranslateError
        │   └── Warning
        │       ├── BytesWarning
        │       ├── DeprecationWarning
        │       ├── FutureWarning
        │       ├── ImportWarning
        │       ├── PendingDeprecationWarning
        │       ├── ResourceWarning
        │       ├── RuntimeWarning
        │       ├── SyntaxWarning
        │       ├── UnicodeWarning
        │       └── UserWarning
        ├── GeneratorExit
        ├── KeyboardInterrupt
        └── SystemExit
  • 相关阅读:
    信息安全系统设计基础 第12周学习笔记
    信息安全系统设计基础 第11周学习笔记
    信息安全系统设计基础 第10周学习笔记
    logstash使用
    remi
    redis 自启动
    求相对路径的函数
    java json
    一个php的爬虫,将笔趣阁的书可以都下载下来。
    php写插件
  • 原文地址:https://www.cnblogs.com/timlinux/p/11801288.html
Copyright © 2011-2022 走看看