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
  • 相关阅读:
    css 垂直居中
    pdf.js 标题修改
    electron 打包时文件复制到程序目录下
    js 高阶函数
    计算一个数字是否素数
    Object.assign()
    vue 路由页面 首次打开浏览器 返回上一页异常问题
    swagger使用报错:No enum constant org.springframework.web.bind.annotation.RequestMethod.get
    idea 关于查询的快捷键
    域渗透之CrackMapExec
  • 原文地址:https://www.cnblogs.com/timlinux/p/11801288.html
Copyright © 2011-2022 走看看