Python 內建異常

來源:互聯網
上載者:User
BaseException              所有異常基類 +-- SystemExit                python解譯器請求退出 +-- KeyboardInterrupt            使用者中斷執行(通常是輸入ctrl+C) +-- GeneratorExit              產生器(generator)發生異常來通知退出  +-- Exception                常規錯誤的基類      +-- StopIteration           迭代器沒有更多的值      +-- StandardError           所有的內建標準異常的基類      |    +-- BufferError               |    +-- ArithmeticError       所有數值計算錯誤的基類      |    |    +-- FloatingPointError   浮點計算錯誤      |    |    +-- OverflowError     數值運算超出最大限制      |    |    +-- ZeroDivisionError   除(或模數)零(所有資料類型)      |    +-- AssertionError       Assert 陳述式失敗      |    +-- AttributeError        對象沒有這個屬性      |    +-- EnvironmentError       作業系統錯誤的基類      |    |    +-- IOError          輸入輸出失敗      |    |    +-- OSError          作業系統錯誤       |    |         +-- WindowsError (Windows)    windows系統調用失敗      |    |         +-- VMSError (VMS)               |    +-- EOFError          沒有內建輸入,到達EOF標記                |    +-- ImportError        匯入模組/對象 失敗      |    +-- LookupError        無效資料查詢的基類      |    |    +-- IndexError      序列中沒有此索引(index)      |    |    +-- KeyError       映射中沒有這個鍵      |    +-- MemoryError        記憶體溢出錯誤(對於Python解譯器不是致命的)      |    +-- NameError         未聲明/初始化對象(沒有屬性)      |    |    +-- UnboundLocalError  訪問未初始化的本地變數      |    +-- ReferenceError       弱引用(Weak reference)試圖訪問已經記憶體回收了的對象      |    +-- RuntimeError        一般的執行階段錯誤      |    |    +-- NotImplementedError 尚未實現的方法      |    +-- SyntaxError         Pythony語法錯誤      |    |    +-- IndentationError   縮排錯誤      |    |         +-- TabError     Tab和空格混用      |    +-- SystemError         一般的解譯器系統錯誤      |    +-- TypeError          對類型無效的操作      |    +-- ValueError         傳入無效的參數      |         +-- UnicodeError     Unicode相關錯誤      |              +-- UnicodeDecodeError    Unicode解碼時錯誤      |              +-- UnicodeEncodeError    Unicode編碼時錯誤      |              +-- UnicodeTranslateError   Unicode轉換時錯誤      +-- Warning               警告的基類                  +-- DeprecationWarning      關於被啟用的特徵的警告           +-- PendingDeprecationWarning  關於構造將來語義會有改變的警告           +-- RuntimeWarning         可疑的運行時行為的警告
         +-- SyntaxWarning       可疑的語言的警告             +-- UserWarning        使用者代碼產生警告           +-- FutureWarning   +-- ImportWarning      匯入模組/對象警告   +-- UnicodeWarning      Unicode警告   +-- BytesWarning       Bytes警告       +-- Overflow Warning      舊的關於自動提升為長整型(long)的警告

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.