discord-jadx/app/src/main/java/kotlinx/coroutines/CoroutineExceptionHandler.java
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

14 lines
542 B
Java

package kotlinx.coroutines;
import kotlin.coroutines.CoroutineContext;
/* compiled from: CoroutineExceptionHandler.kt */
public interface CoroutineExceptionHandler extends CoroutineContext.Element {
public static final /* synthetic */ int g = 0;
/* compiled from: CoroutineExceptionHandler.kt */
public static final class a implements CoroutineContext.Key<CoroutineExceptionHandler> {
public static final /* synthetic */ a a = new a();
}
void handleException(CoroutineContext coroutineContext, Throwable th);
}