diff --git a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Exceptions.kt b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Exceptions.kt index be0feda4785..36f1661e372 100644 --- a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Exceptions.kt +++ b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Exceptions.kt @@ -5,7 +5,6 @@ package org.jetbrains.kotlin.backend.konan -import org.jetbrains.kotlin.konan.KonanException import org.jetbrains.kotlin.utils.KotlinExceptionWithAttachments /** @@ -15,9 +14,3 @@ class KonanCompilationException( message: String = "", cause: Throwable? = null ) : KotlinExceptionWithAttachments(message, cause) - -/** - * Internal compiler error: could not deserialize IR for inline function body. - */ -class KonanIrDeserializationException(message: String = "", cause: Throwable? = null) : KonanException(message, cause) -