Files
test/sg_wechat_enterprise/we_api/enterprise/exceptions.py
2024-07-10 15:58:47 +08:00

10 lines
315 B
Python

# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from wechatpy.exceptions import WeChatException
class InvalidCorpIdException(WeChatException):
def __init__(self, errcode=-40005, errmsg='Invalid corp_id'):
super(InvalidCorpIdException, self).__init__(errcode, errmsg)