中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么解決Python中自定義異常

發布時間:2020-08-24 17:49:19 來源:億速云 閱讀:180 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關怎么解決Python中自定義異常,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

通過創建一個新的異常類,程序可以命名它們自己的異常。異常應該是典型的繼承自Exception類,通過直接或間接的方式。

以下為與RuntimeError相關的實例,實例中創建了一個類,基類為RuntimeError,用于在異常觸發時輸出更多的信息。

在try語句塊中,用戶自定義的異常后執行except塊語句,變量 e 是用于創建Networkerror類的實例。

class Networkerror(RuntimeError):
  def __init__(self, arg):
   self.args = arg

在你定義以上類后,你可以觸發該異常,如下所示:

try:
  raise Networkerror("Bad hostname")
except Networkerror,e:
  print e.args

在下面這個例子中,默認的__init__()異常已被我們重寫。

>>> class MyError(Exception):
...   def __init__(self, value):
...     self.value = value
...   def __str__(self):
...     return repr(self.value)
...
>>> try:
...   raise MyError(2*2)
... except MyError as e:
...   print 'My exception occurred, value:', e.value
...
My exception occurred, value: 4
>>> raise MyError, 'oops!'
Traceback (most recent call last):
 File "<stdin>", line 1, in ?
__main__.MyError: 'oops!'

常見的做法是創建一個由該模塊定義的異常基類和子類,創建特定的異常類不同的錯誤條件。

我們通常定義的異常類,會讓它比較簡單,允許提取異常處理程序的錯誤信息,當創建一個異常模塊的時候,常見的做法是創建一個由該模塊定義的異常基類和子類,根據不同的錯誤條件,創建特定的異常類:

class Error(Exception):
  """Base class for exceptions in this module."""
  pass
 
class InputError(Error):
  """Exception raised for errors in the input.
 
  Attributes:
    expression -- input expression in which the error occurred
    message -- explanation of the error
  """
 
  def __init__(self, expression, message):
    self.expression = expression
    self.message = message
 
class TransitionError(Error):
  """Raised when an operation attempts a state transition that's not
  allowed.
 
  Attributes:
    previous -- state at beginning of transition
    next -- attempted new state
    message -- explanation of why the specific transition is not allowed
  """
 
  def __init__(self, previous, next, message):
    self.previous = previous
    self.next = next
    self.message = message

關于怎么解決Python中自定義異常就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

潞城市| 葵青区| 兰州市| 宜都市| 临潭县| 武隆县| 松溪县| 黑山县| 达尔| 蒙山县| 淅川县| 太仆寺旗| 林甸县| 务川| 黄山市| 皮山县| 平顶山市| 应城市| 扶风县| 光泽县| 嘉禾县| 改则县| 开化县| 仙桃市| 云龙县| 天峻县| 海淀区| 苏尼特左旗| 乌苏市| 雅江县| 开阳县| 美姑县| 桓台县| 新民市| 隆子县| 犍为县| 遂川县| 临江市| 喀什市| 西平县| 南郑县|