mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
21 lines
359 B
Python
21 lines
359 B
Python
from .base import CQWUEhallError
|
|
|
|
|
|
class AuthError(CQWUEhallError):
|
|
pass
|
|
|
|
|
|
class UsernameOrPasswordError(AuthError):
|
|
"""用户名或密码错误"""
|
|
|
|
|
|
class CookieError(AuthError):
|
|
"""Cookie 失效"""
|
|
|
|
|
|
class NeedCaptchaError(AuthError):
|
|
"""需要验证码才能登录"""
|
|
|
|
def __init__(self, captcha: bytes):
|
|
self.captcha = captcha
|