9 lines
243 B
Java
9 lines
243 B
Java
|
package kotlinx.coroutines.internal;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public final class UndeliveredElementException extends RuntimeException {
|
||
|
public UndeliveredElementException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|