discord-jadx/app/src/main/java/kotlinx/coroutines/channels/ClosedReceiveChannelExcepti...

10 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);
}
}