discord-jadx/app/src/main/java/kotlinx/coroutines/CoroutineExceptionHandler.java

17 lines
610 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package kotlinx.coroutines;
import kotlin.coroutines.CoroutineContext;
/* compiled from: CoroutineExceptionHandler.kt */
2022-03-02 20:59:20 +00:00
/* loaded from: classes3.dex */
2021-06-27 20:44:35 +00:00
public interface CoroutineExceptionHandler extends CoroutineContext.Element {
public static final /* synthetic */ int g = 0;
/* compiled from: CoroutineExceptionHandler.kt */
2022-03-02 20:59:20 +00:00
/* loaded from: classes3.dex */
2021-06-27 20:44:35 +00:00
public static final class a implements CoroutineContext.Key<CoroutineExceptionHandler> {
public static final /* synthetic */ a a = new a();
}
void handleException(CoroutineContext coroutineContext, Throwable th);
}