You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/exception-handling.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ coroutine throw an exception?
47
47
48
48
Coroutine builders come in two flavors: propagating exceptions automatically ([launch] and [actor]) or
49
49
exposing them to users ([async] and [produce]).
50
-
The former treat exceptions as unhandled, similar to Java's `Thread.uncaughExceptionHandler`,
50
+
The former treat exceptions as unhandled, similar to Java's `Thread.uncaughtExceptionHandler`,
51
51
while the latter are relying on the user to consume the final
52
52
exception, for example via [await][Deferred.await] or [receive][ReceiveChannel.receive]
53
53
([produce] and [receive][ReceiveChannel.receive] are covered later in [Channels](https://github.com/Kotlin/kotlinx.coroutines/blob/master/docs/channels.md) section).
0 commit comments