Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
package com.facebook.bolts;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Collections;
import java.util.List;
import kotlin.collections.CollectionsKt__CollectionsKt;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AggregateException extends Exception {
public static final Companion Companion = new Companion(null);
private static final long serialVersionUID = 1;
private final List<Throwable> innerThrowables;
public AggregateException(String str, List<? extends Throwable> list) {
super(str, (list == null || !(list.isEmpty() ^ true)) ? null : list.get(0));
List<Throwable> unmodifiableList = Collections.unmodifiableList(list == null ? CollectionsKt__CollectionsKt.emptyList() : list);
Intrinsics.checkNotNullExpressionValue(unmodifiableList, "unmodifiableList(innerThrowables ?: emptyList())");
this.innerThrowables = unmodifiableList;
}
@Override // java.lang.Throwable
public void printStackTrace(PrintStream err) {
Intrinsics.checkNotNullParameter(err, "err");
super.printStackTrace(err);
int i = -1;
for (Throwable th : this.innerThrowables) {
err.append("\n");
err.append(" Inner throwable #");
i++;
err.append((CharSequence) String.valueOf(i));
err.append(": ");
if (th != null) {
th.printStackTrace(err);
}
err.append("\n");
}
}
@Override // java.lang.Throwable
public void printStackTrace(PrintWriter err) {
Intrinsics.checkNotNullParameter(err, "err");
super.printStackTrace(err);
int i = -1;
for (Throwable th : this.innerThrowables) {
err.append("\n");
err.append(" Inner throwable #");
i++;
err.append((CharSequence) String.valueOf(i));
err.append(": ");
if (th != null) {
th.printStackTrace(err);
}
err.append("\n");
}
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
}
}