what-the-bank/sources/io/reactivex/rxjava3/exceptions/UndeliverableException.java

9 lines
508 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.reactivex.rxjava3.exceptions;
/* loaded from: classes6.dex */
public final class UndeliverableException extends IllegalStateException {
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 | ".concat(String.valueOf(th)), th);
}
}