mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 02:55:33 +00:00
17b1f9bd55
* ✨ Support gen_pay_qrcode raise error * ✨ Support BaseModel for get_calendar --------- Co-authored-by: brian <brian@xtaolabs.com>
11 lines
181 B
Python
11 lines
181 B
Python
from .base import CQWUEhallError
|
|
|
|
|
|
class EPayError(CQWUEhallError):
|
|
pass
|
|
|
|
|
|
class EPayQrCodeError(EPayError):
|
|
def __init__(self, qrcode: bytes):
|
|
self.qrcode = qrcode
|