13 lines
360 B
Java
13 lines
360 B
Java
|
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);
|
||
|
}
|
||
|
}
|