python异常触发及自定义异常类解析
更新时间:2019年08月06日 09:57:59 作者:notis
这篇文章主要介绍了python异常触发及自定义异常类解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
python程序运行中,可由程序抛出异常。
异常触发:使用raise命令抛出异常,即可使用异常基类Exception,也可使用自定义异常类(继承Exception类)。
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
# Define a class to raise Line errors
class LineError(Exception): #继承自基类Exception
def __init__(self,ErrorInfo):
self.errorinfo=ErrorInfo
def __str__(self):
return self.errorinfo
class Line:
def __init__(self, point1, point2):
self.point1 = point1
self.point2 = point2
if point1.x==point2.x and point1.y==point2.y:
raise LineError("Cannot create line")
line = Line(Point(1, 2), Point(1, 2))
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
python中类的输出或类的实例输出为<__main__类名 object at xxxx>这种形式的原因
在本篇文章里小编给大家分享了关于python中类的输出或类的实例输出为何是<__main__类名 object at xxxx>这种形式,需要的朋友们可以参考下。2019-08-08


最新评论