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

13 lines
360 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 QueueOverflowException extends RuntimeException {
public QueueOverflowException() {
this("Queue overflow due to illegal concurrent onNext calls or a bug in an operator");
}
private QueueOverflowException(String str) {
super(str);
}
}