jimu-decompiled/sources/io/reactivex/exceptions/Exceptions.java
2025-05-13 19:24:51 +02:00

23 lines
581 B
Java

package io.reactivex.exceptions;
import io.reactivex.internal.util.ExceptionHelper;
/* loaded from: classes2.dex */
public final class Exceptions {
public static RuntimeException a(Throwable th) {
throw ExceptionHelper.a(th);
}
public static void b(Throwable th) {
if (th instanceof VirtualMachineError) {
throw ((VirtualMachineError) th);
}
if (th instanceof ThreadDeath) {
throw ((ThreadDeath) th);
}
if (th instanceof LinkageError) {
throw ((LinkageError) th);
}
}
}