jimu-decompiled/sources/io/reactivex/exceptions/UndeliverableException.java
2025-05-13 19:24:51 +02:00

11 lines
563 B
Java

package io.reactivex.exceptions;
/* loaded from: classes2.dex */
public final class UndeliverableException extends IllegalStateException {
private static final long serialVersionUID = 1644750035281290266L;
public UndeliverableException(Throwable th) {
super("The exception could not be delivered to the consumer because it has already canceled/disposed the flow or the exception has nowhere to go to begin with. Further reading: https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0#error-handling | " + th.getMessage(), th);
}
}