Files
rr3-apk/decompiled-community/sources/com/vungle/ads/InvalidAdStateError.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

23 lines
1.1 KiB
Java

package com.vungle.ads;
import com.vungle.ads.internal.protos.Sdk;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InvalidAdStateError extends VungleError {
public InvalidAdStateError() {
this(0, null, null, null, null, null, 63, null);
}
public /* synthetic */ InvalidAdStateError(int i, Sdk.SDKError.Reason reason, String str, String str2, String str3, String str4, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this((i2 & 1) != 0 ? VungleError.INVALID_AD_STATE : i, (i2 & 2) != 0 ? null : reason, (i2 & 4) != 0 ? "Ad state is invalid" : str, (i2 & 8) != 0 ? null : str2, (i2 & 16) != 0 ? null : str3, (i2 & 32) == 0 ? str4 : null);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public InvalidAdStateError(int i, Sdk.SDKError.Reason reason, String errorMessage, String str, String str2, String str3) {
super(Integer.valueOf(i), reason, errorMessage, str, str2, str3, null);
Intrinsics.checkNotNullParameter(errorMessage, "errorMessage");
}
}