mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
13 lines
347 B
Java
13 lines
347 B
Java
|
package io.sentry.util;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class ExceptionUtils {
|
||
|
public static Throwable findRootCause(Throwable th) {
|
||
|
Objects.requireNonNull(th, "throwable cannot be null");
|
||
|
while (th.getCause() != null && th.getCause() != th) {
|
||
|
th = th.getCause();
|
||
|
}
|
||
|
return th;
|
||
|
}
|
||
|
}
|