discord-jadx/app/src/main/java/kotlinx/coroutines/flow/internal/ChildCancelledException.java
2021-07-24 04:37:17 +02:00

15 lines
468 B
Java

package kotlinx.coroutines.flow.internal;
import java.util.concurrent.CancellationException;
/* compiled from: FlowExceptions.kt */
public final class ChildCancelledException extends CancellationException {
public ChildCancelledException() {
super("Child of the scoped flow was cancelled");
}
@Override // java.lang.Throwable
public Throwable fillInStackTrace() {
setStackTrace(new StackTraceElement[0]);
return this;
}
}