空港防疫算法交互
選択できるのは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)