码迷,mamicode.com
首页 > 编程语言 > 详细

python 自定义错误处理

时间:2020-05-20 17:12:34      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:自定义异常   turn   ISE   类型   code   简单   style   col   exception   

简单的自定义异常处理

class CustomizeError(BaseException):
    def __init__(self, msg):
        self.msg = msg

    def __str__(self):
        return self.msg

try:
    raise CustomizeError(错误类型)
except CustomizeError as e:
    print(e)

 

python 自定义错误处理

标签:自定义异常   turn   ISE   类型   code   简单   style   col   exception   

原文地址:https://www.cnblogs.com/zjj1990/p/12924649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!