reactive/kotlinx-coroutines-rx2/src/RxMaybe.kt [43:61]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } catch (e: Throwable) { handleUndeliverableException(e, context) } } override fun onCancelled(cause: Throwable, handled: Boolean) { try { if (subscriber.tryOnError(cause)) { return } } catch (e: Throwable) { cause.addSuppressed(e) } handleUndeliverableException(cause, context) } } /** @suppress */ @Deprecated( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - reactive/kotlinx-coroutines-rx2/src/RxSingle.kt [42:60]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } catch (e: Throwable) { handleUndeliverableException(e, context) } } override fun onCancelled(cause: Throwable, handled: Boolean) { try { if (subscriber.tryOnError(cause)) { return } } catch (e: Throwable) { cause.addSuppressed(e) } handleUndeliverableException(cause, context) } } /** @suppress */ @Deprecated( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -