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

7 lines
227 B
Java

package kotlinx.coroutines.channels;
/* compiled from: Channel.kt */
public final class ClosedSendChannelException extends IllegalStateException {
public ClosedSendChannelException(String str) {
super(str);
}
}