自定义异常

一、关于自定义异常的介绍

  • 自定义异常的类都要去继承BaseException
  • 主动触发异常的是raise

二、创建一个自定义异常

  • 1、创建

    
    # 自定义异常类
    class CustomException(BaseException):
        def __init__(self, msg):
            self.msg = msg
    
        def __str__(self):
            return self.msg
    
  • 2、使用

    # 自定义异常类
    class CustomException(BaseException):
        def __init__(self, msg):
            self.msg = msg
    
        def __str__(self):
            return self.msg
    

results matching ""

    No results matching ""