自定义异常

Posted rongye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义异常相关的知识,希望对你有一定的参考价值。

class AlexError(Exception):
def __init__(self, msg):
self.message = msg
# def __str__(self):
# return ‘sdfsf‘
try:
raise AlexError(‘数据库连不上‘)
except AlexError as e:
print(e)








以上是关于自定义异常的主要内容,如果未能解决你的问题,请参考以下文章

Java 求大神们解答:自定义异常,处理异常

Java中的自定义异常捕获方式

自定义异常

Springboot+自定义注解+自定义AOP前置增强+自定义异常+自定义异常捕获

自定义异常(源码)

C# 自定义异常