23 lines
581 B
Java
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);
|
|
}
|
|
}
|
|
}
|