discord-jadx/app/src/main/java/kotlinx/coroutines/channels/ClosedReceiveChannelException.java
2021-06-27 22:44:35 +02:00

9 lines
276 B
Java

package kotlinx.coroutines.channels;
import java.util.NoSuchElementException;
/* compiled from: Channel.kt */
public final class ClosedReceiveChannelException extends NoSuchElementException {
public ClosedReceiveChannelException(String str) {
super(str);
}
}