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
  • 相关阅读:
    小实例 hangman game
    二分搜索
    基于xml的aop开发
    Discuz! 6.x/7.x 全局变量防御绕过导致命令执行
    PHP执行linux系统命令
    IP反查网站,ip反查接口,旁站查询接口大全,通过IP查域名汇总:
    取消sudo的密码
    linux之kali系统ssh服务开启
    Linux下自动备份MySQL数据库详细操作步骤(转载)
    MongoDB学习笔记(一) MongoDB介绍及安装
  • 原文地址:https://www.cnblogs.com/timlinux/p/11801288.html
Copyright © 2011-2022 走看看