|
|
@@ -34,11 +34,11 @@ import kotlin.jvm.JvmSynthetic
|
|
|
|
|
|
|
|
|
@Suppress("unused")
|
|
|
-expect class EventCancelledException : RuntimeException {
|
|
|
- constructor()
|
|
|
- constructor(message: String?)
|
|
|
- constructor(message: String?, cause: Throwable?)
|
|
|
- constructor(cause: Throwable?)
|
|
|
+class EventCancelledException : RuntimeException {
|
|
|
+ constructor() : super()
|
|
|
+ constructor(message: String?) : super(message)
|
|
|
+ constructor(message: String?, cause: Throwable?) : super(message, cause)
|
|
|
+ constructor(cause: Throwable?) : super(cause)
|
|
|
}
|
|
|
|
|
|
// note: 若你使用 IntelliJ IDEA, 按 alt + 7 可打开结构
|