您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
328B

  1. # -*- coding: utf-8 -*-
  2. from loguru import logger
  3. """
  4. 自定义异常
  5. """
  6. class ServiceException(Exception): # 继承异常类
  7. def __init__(self, code, msg):
  8. self.code = code
  9. self.msg = msg
  10. def __str__(self):
  11. logger.error("异常编码:{}, 异常描述:{}", self.code, self.msg)