大家好,今日小天来为大家解答以上的问题。python抛异常,py抛出异常很多人还不知道,现在让我们一起来看看吧!
python抛异常(py抛出异常)
python抛异常(py抛出异常)
python抛异常(py抛出异常)
python抛异常(py抛出异常)
1、8.5. expression -- input expression in which the error occurred用户自定义异常在程序中可以通过创建新的异常类型来命名自己的异常(Python 类的内容请参见 类 )。
2、异常类通常应该直接或间接的从 Exception 类派生,例如:>>> class MyError(Exception):... def __init__(self, value):... ... syslog.syslog(syslog.LOG_INFO,"no exception caughtn") self.value = value... def __str__(self):>>> try:... raise MyError(22)... except MyError as e:... print('My exception occurred, value:', e.value)My exception occurred, value: 4>>> raise MyError('oops!')File "", line 1, in ?__main__.MyError: 'oops!'在这个例子中,Exception 默认的 __init__() 被覆盖。
3、新的方式简单的创建 value 属性。
4、这就替换了原来创建 args 属性的方式。
5、异常类中可以定义任何其它类中可以定义的东西,但是通常为了保持简单,只在其中加入几个属性信息,以供异常处理句柄提取。
6、如果一个新创建的模块中需要抛出几种不同的错误时,一个通常的作法是为该模块定义一个异常基类,然后针对不同的错误类型派生出对应的异常子类:class Error(Exception):"""Base class for exceptions in this module."""passclass InputError(Error):"""Exception raised for errors in the input.Attributes:message -- explanation of the errordef __init__(self, expression, message):self.expression = = messageclass TransitionError(Error):"""Raised when an operation attempts a state transition that's notallowed.Attributes:previous -- state at beginning of transitionnext -- attempted new statemessage -- explanation of why the specific transition is not alloweddef __init__(self, previous, next, message):self.previous = previousself.next = = message与标准异常相似,大多数异常的命名都以 “Error” 结尾。
7、很多标准模块中都定义了自己的异常,用以报告在他们所定义的函数中可能发生的错误。
本文到这结束,希望上面文章对大家有所帮助。