加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python异常触发及自定义异常类

发布时间:2020-12-20 12:48:15 所属栏目: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 cl

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)) 

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读