Files
rr3-apk/decompiled/sources/com/vungle/ads/InternalError.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

34 lines
1.1 KiB
Java

package com.vungle.ads;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InternalError extends VungleError {
public /* synthetic */ InternalError(int i, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(i, (i2 & 2) != 0 ? null : str);
}
public InternalError(int i, String str) {
super(Integer.valueOf(i), null, str, null, null, null, 58, null);
}
@Override // com.vungle.ads.VungleError
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!Intrinsics.areEqual(InternalError.class, obj != null ? obj.getClass() : null)) {
return false;
}
int code = getCode();
Intrinsics.checkNotNull(obj, "null cannot be cast to non-null type com.vungle.ads.InternalError");
return code == ((InternalError) obj).getCode();
}
@Override // com.vungle.ads.VungleError
public int hashCode() {
return InternalError.class.hashCode();
}
}