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

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");
}
}