mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 02:55:33 +00:00
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
|