mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-04 08:59:51 +08:00
Add LoginFailedException
This commit is contained in:
parent
ba946eb249
commit
c03fb41fd0
@ -24,6 +24,7 @@ import net.mamoe.mirai.data.GroupInfo
|
||||
import net.mamoe.mirai.data.MemberInfo
|
||||
import net.mamoe.mirai.message.data.Image
|
||||
import net.mamoe.mirai.network.BotNetworkHandler
|
||||
import net.mamoe.mirai.network.LoginFailedException
|
||||
import net.mamoe.mirai.utils.*
|
||||
import net.mamoe.mirai.utils.io.transferTo
|
||||
|
||||
@ -175,9 +176,11 @@ abstract class Bot : CoroutineScope {
|
||||
|
||||
/**
|
||||
* 登录, 或重新登录.
|
||||
* 不建议调用这个函数.
|
||||
* 重新登录时不会再次拉取联系人列表.
|
||||
*
|
||||
* 最终调用 [net.mamoe.mirai.network.BotNetworkHandler.login]
|
||||
* 最终调用 [net.mamoe.mirai.network.BotNetworkHandler.relogin]
|
||||
*
|
||||
* @throws LoginFailedException
|
||||
*/
|
||||
abstract suspend fun login()
|
||||
// endregion
|
||||
|
@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright 2020 Mamoe Technologies and contributors.
|
||||
*
|
||||
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
|
||||
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
|
||||
*
|
||||
* https://github.com/mamoe/mirai/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
package net.mamoe.mirai.network
|
||||
|
||||
/**
|
||||
* 正常登录失败时抛出
|
||||
*/
|
||||
sealed class LoginFailedException : RuntimeException {
|
||||
constructor() : super()
|
||||
constructor(message: String?) : super(message)
|
||||
constructor(message: String?, cause: Throwable?) : super(message, cause)
|
||||
constructor(cause: Throwable?) : super(cause)
|
||||
}
|
||||
|
||||
class WrongPasswordException(message: String?) : LoginFailedException(message)
|
Loading…
Reference in New Issue
Block a user