Don't include exceptions when compiling bridges for C export

^KT-69507
diff --git a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt
index e308638..08b43f6 100644
--- a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt
+++ b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt
@@ -251,8 +251,6 @@
         // Include header into C++ source.
         headerFile.forEachLine { it -> output(it) }
 
-        output("#include <exception>")
-
         output("""
     |struct KObjHeader;
     |typedef struct KObjHeader KObjHeader;