1 Star 0 Fork 0

FelixBin/PythonLearn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
异常自定义.py 319 Bytes
一键复制 编辑 原始数据 按行查看 历史
FelixBin 提交于 7年前 . 异常
# _*_ coding:utf-8 _*_
# __author__ = 'WFaceBoss'
# __date__ = '2018-08-10 11:59'
class WupeiqiException(Exception):
def __init__(self, msg):
self.message = msg
def __str__(self):
return self.message
try:
raise WupeiqiException('我的异常')
except WupeiqiException as e:
print(e)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/FelixBinCloud/PythonLearn.git
git@gitee.com:FelixBinCloud/PythonLearn.git
FelixBinCloud
PythonLearn
PythonLearn
master

搜索帮助