用户自定义异常
Posted wangyue0925
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用户自定义异常相关的知识,希望对你有一定的参考价值。
在程序中可以通过创建新的异常类型来命名自己的异常(Python 类的内容请参见 类
)。异常类通常应该直接或间接的从 Exception 类派生,例如:
def __init__(self, value): self.value = 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!’
def __str__(self):
return repr(self.value)
在这个例子中,Exception 默认的 __init__() 被覆盖。新的方式简单的创建 value 属性。这就替换了原来创建 args 属性的方式。
异常类中可以定义任何其它类中可以定义的东西,但是通常为了保持简单,只在其中 加入几个属性信息,以供异常处理句柄提取。如果一个新创建的模块中需要抛出几种 不同的错误时,一个通常的作法是为该模块定义一个异常基类,然后针对不同的错误 类型派生出对应的异常子类:
"""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
以上是关于用户自定义异常的主要内容,如果未能解决你的问题,请参考以下文章