Guys, when next code can throw `UndeliverableExcep...
# rx
e
Guys, when next code can throw `UndeliverableException`:
Copy code
private fun notifyEmitterWithException(emitter: MaybeEmitter<*>, e: Exception) {
        if (!emitter.isDisposed) {
            emitter.onError(e)
        }
    }