python python Exception模块

Posted

tags:

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

# 如何自定义异常类
class Error(Exception):
    pass

class InputError(Error):
    def __init__(self,message):
        self.message = message
    def __str__(self):
        return self.message


def test_exception():
    i = 1 
    if i == 1:
        raise InputError("the number can't equal to 1")
    
try:
    test_exception()
except InputError as e:
    print(e)
# 如何记录异常堆栈
try:
    excep_class.except_fun(excep_class)
except:
    s=traceback.format_exc()
    logging.error(s)

以上是关于python python Exception模块的主要内容,如果未能解决你的问题,请参考以下文章

python 当Exception发生时,使用traceback模块获取更多的stackinfo

python 面向对象&常用模块

安装Python 3模块的问题

Python3 C++ 模块 - 异常 - GIL 未持有

Python登录SSH服务遇到报错,paramiko.ssh_exception.SSHException: Channel closed.

python基础-异常(exception)处理