blob: d403be33de87b8113862cb8de4ba8225a8a8bf9c [file] [log] [blame]
Roman Elizarova7db8ec2017-12-21 22:45:12 +03001/*
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03002 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
Roman Elizarova7db8ec2017-12-21 22:45:12 +03003 */
4
Roman Elizarove1c0b652017-12-01 14:02:57 +03005package kotlinx.coroutines.experimental
6
Roman Elizarovaa461cf2018-04-11 13:20:29 +03007import kotlin.coroutines.experimental.*
8
9internal actual fun handleCoroutineExceptionImpl(context: CoroutineContext, exception: Throwable) {
10 // log exception
11 console.error(exception)
12}