Files
rr3-apk/decompiled/sources/com/fyber/inneractive/sdk/click/b.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

33 lines
918 B
Java

package com.fyber.inneractive.sdk.click;
import com.fyber.inneractive.sdk.click.l;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class b {
public final l.d a;
public final Throwable b;
public final String c;
public final String d;
public long e;
public final ArrayList f = new ArrayList();
public b(String str, l.d dVar, String str2, Throwable th) {
this.d = str;
this.a = dVar;
this.c = str2;
this.b = th;
}
public final String toString() {
l.d dVar = this.a;
if (dVar != l.d.FAILED) {
return String.format("Open result: Success! target: %s method: %s", dVar, this.c);
}
Object[] objArr = new Object[1];
Throwable th = this.b;
objArr[0] = th != null ? th.getMessage() : "none";
return String.format("Open result: Failed! error: %s", objArr);
}
}