Skip to content

Commit d826f5f

Browse files
committed
Suppress docs for native CompletionHandlerException
1 parent d1129b2 commit d826f5f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

js/kotlinx-coroutines-core-js/src/Exceptions.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ package kotlinx.coroutines
66

77
/**
88
* This exception gets thrown if an exception is caught while processing [CompletionHandler] invocation for [Job].
9-
* @suppress
9+
*
10+
* @suppress **This an internal API and should not be used from general code.**
1011
*/
12+
@InternalCoroutinesApi
1113
public actual class CompletionHandlerException public actual constructor(
1214
message: String,
1315
public override val cause: Throwable

native/kotlinx-coroutines-core-native/src/Exceptions.kt

+3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ package kotlinx.coroutines
66

77
/**
88
* This exception gets thrown if an exception is caught while processing [CompletionHandler] invocation for [Job].
9+
*
10+
* @suppress **This an internal API and should not be used from general code.**
911
*/
12+
@InternalCoroutinesApi
1013
public actual class CompletionHandlerException public actual constructor(
1114
message: String,
1215
public override val cause: Throwable

0 commit comments

Comments
 (0)