1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-25 21:23:55 +08:00

Extract ExceptionInEventChannelFilterException to separate file

This commit is contained in:
Him188 2020-12-27 15:06:21 +08:00
parent ac95ef4472
commit ec75734763
2 changed files with 28 additions and 16 deletions
mirai-core-api/src/commonMain/kotlin/event

View File

@ -30,22 +30,6 @@ import kotlin.coroutines.suspendCoroutine
import kotlin.internal.LowPriorityInOverloadResolution
import kotlin.reflect.KClass
/**
* 包装 [EventChannel.filter] `filter` lambda 抛出的异常并重新抛出.
*/
public class ExceptionInEventChannelFilterException(
/**
* 当时正在处理的事件
*/
public val event: Event,
public val eventChannel: EventChannel<*>,
override val message: String = "Exception in EventHandler",
/**
* 原异常
*/
override val cause: Throwable
) : IllegalStateException()
/**
* 在此 [CoroutineScope] 下创建一个监听所有事件的 [EventChannel]. 相当于 `GlobalEventChannel.parentScope(this).context(coroutineContext)`.
*

View File

@ -0,0 +1,28 @@
/*
* Copyright 2019-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.event
/**
* 包装 [EventChannel.filter] `filter` lambda 抛出的异常并重新抛出.
*
* @see EventChannel.filter
*/
public class ExceptionInEventChannelFilterException(
/**
* 当时正在处理的事件
*/
public val event: Event,
public val eventChannel: EventChannel<*>,
override val message: String = "Exception in EventHandler",
/**
* 原异常
*/
override val cause: Throwable
) : IllegalStateException()