- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
102 lines
2.8 KiB
Java
102 lines
2.8 KiB
Java
package com.ironsource;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class dq {
|
|
public static final a c = new a(null);
|
|
public static final int d = 2070;
|
|
public static final int e = 2080;
|
|
public static final int f = 2090;
|
|
public static final int g = 2100;
|
|
public static final int h = 2110;
|
|
private final int a;
|
|
private final String b;
|
|
|
|
public static final class a {
|
|
private a() {
|
|
}
|
|
|
|
public /* synthetic */ a(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public dq(int i, String errorMessage) {
|
|
Intrinsics.checkNotNullParameter(errorMessage, "errorMessage");
|
|
this.a = i;
|
|
this.b = errorMessage;
|
|
}
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public dq(com.ironsource.mediationsdk.logger.IronSourceError r3) {
|
|
/*
|
|
r2 = this;
|
|
java.lang.String r0 = "error"
|
|
kotlin.jvm.internal.Intrinsics.checkNotNullParameter(r3, r0)
|
|
int r0 = r3.getErrorCode()
|
|
java.lang.String r3 = r3.getErrorMessage()
|
|
java.lang.String r1 = "error.errorMessage"
|
|
kotlin.jvm.internal.Intrinsics.checkNotNullExpressionValue(r3, r1)
|
|
r2.<init>(r0, r3)
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: com.ironsource.dq.<init>(com.ironsource.mediationsdk.logger.IronSourceError):void");
|
|
}
|
|
|
|
public static /* synthetic */ dq a(dq dqVar, int i, String str, int i2, Object obj) {
|
|
if ((i2 & 1) != 0) {
|
|
i = dqVar.a;
|
|
}
|
|
if ((i2 & 2) != 0) {
|
|
str = dqVar.b;
|
|
}
|
|
return dqVar.a(i, str);
|
|
}
|
|
|
|
public final int a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final dq a(int i, String errorMessage) {
|
|
Intrinsics.checkNotNullParameter(errorMessage, "errorMessage");
|
|
return new dq(i, errorMessage);
|
|
}
|
|
|
|
public final String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final int c() {
|
|
return this.a;
|
|
}
|
|
|
|
public final String d() {
|
|
return this.b;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof dq)) {
|
|
return false;
|
|
}
|
|
dq dqVar = (dq) obj;
|
|
return this.a == dqVar.a && Intrinsics.areEqual(this.b, dqVar.b);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (Integer.hashCode(this.a) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "SdkError(errorCode=" + this.a + ", errorMessage=" + this.b + ')';
|
|
}
|
|
}
|