Python标准异常总结
以下是?Python?內(nèi)置異常類的層次結(jié)構(gòu):
BaseException
+-- SystemExit
+-- KeyboardInterrupt
+-- GeneratorExit
+-- Exception
? ?? ?+-- StopIteration
? ?? ?+-- ArithmeticError
? ?? ?|? ? +-- FloatingPointError
? ?? ?|? ? +-- OverflowError
? ?? ?|? ? +-- ZeroDivisionError
? ?? ?+-- AssertionError
? ?? ?+-- AttributeError
? ?? ?+-- BufferError
? ?? ?+-- EOFError
? ?? ?+-- ImportError
? ?? ?+-- 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
? ?? ?+-- SyntaxError
? ?? ?|? ? +-- IndentationError
? ?? ?|? ?? ?? ?+-- TabError
? ?? ?+-- SystemError
? ?? ?+-- TypeError
? ?? ?+-- ValueError
? ?? ?|? ? +-- UnicodeError
? ?? ?|? ?? ?? ?+-- UnicodeDecodeError
? ?? ?|? ?? ?? ?+-- UnicodeEncodeError
? ?? ?|? ?? ?? ?+-- UnicodeTranslateError
? ?? ?+-- Warning
? ?? ?? ???+-- DeprecationWarning
? ?? ?? ???+-- PendingDeprecationWarning
? ?? ?? ???+-- RuntimeWarning
? ?? ?? ???+-- SyntaxWarning
? ?? ?? ???+-- UserWarning
? ?? ?? ???+-- FutureWarning
? ?? ?? ???+-- ImportWarning
? ?? ?? ???+-- UnicodeWarning
? ?? ?? ???+-- BytesWarning
? ?? ?? ???+-- ResourceWarning
總結(jié)
以上是生活随笔為你收集整理的Python标准异常总结的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java文档注释——生成帮助文档
- 下一篇: 关于python中带下划线的变量和函数