記錄關於python相關的知識。python
自定義異常:spa
繼承 Exception 類,而後重寫__int__和__str__方法。code
class Error(Exception): def __init__(self, value): self.value = value def __str__(self): return repr(self.value)
發現錯誤,引起異常:blog
raise Error("find error")
捕獲異常:繼承
try: raise Error("find error") except Error as e: print 'My exception occurred, value:', e.value