美文网首页
exceptions

exceptions

作者: 乐观的猴 | 来源:发表于2019-12-05 13:05 被阅读0次

    BaseException
    +-- SystemExit
    +-- KeyboardInterrupt
    +-- GeneratorExit
    +-- Exception
    +-- StopIteration
    +-- StopAsyncIteration
    +-- ArithmeticError
    | +-- FloatingPointError
    | +-- OverflowError
    | +-- ZeroDivisionError
    +-- AssertionError
    +-- AttributeError
    +-- BufferError
    +-- EOFError
    +-- ImportError
    | +-- ModuleNotFoundError
    +-- LookupError
    | +-- IndexError
    | +-- KeyError
    +-- MemoryError
    +-- NameError
    | +-- UnboundLocalError
    +-- OSError
    | +-- BlockingIOError
    | +-- ChildProcessError
    | +-- ConnectionError
    | | +-- BrokenPipeError
    | | +-- ConnectionAbortedError
    | | +-- ConnectionRefusedError
    | | +-- ConnectionResetError
    | +-- FileExistsError
    | +-- FileNotFoundError
    | +-- InterruptedError
    | +-- IsADirectoryError
    | +-- NotADirectoryError
    | +-- PermissionError
    | +-- ProcessLookupError
    | +-- TimeoutError
    +-- ReferenceError
    +-- RuntimeError
    | +-- NotImplementedError
    | +-- RecursionError
    +-- SyntaxError
    | +-- IndentationError
    | +-- TabError
    +-- SystemError
    +-- TypeError
    +-- ValueError
    | +-- UnicodeError
    | +-- UnicodeDecodeError
    | +-- UnicodeEncodeError
    | +-- UnicodeTranslateError
    +-- Warning
    +-- DeprecationWarning
    +-- PendingDeprecationWarning
    +-- RuntimeWarning
    +-- SyntaxWarning
    +-- UserWarning
    +-- FutureWarning
    +-- ImportWarning
    +-- UnicodeWarning
    +-- BytesWarning
    +-- ResourceWarning

    相关文章

      网友评论

          本文标题:exceptions

          本文链接:https://www.haomeiwen.com/subject/avedgctx.html