Files
rr3-apk/decompiled/sources/androidx/fragment/app/strictmode/Violation.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

26 lines
840 B
Java

package androidx.fragment.app.strictmode;
import androidx.fragment.app.Fragment;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public abstract class Violation extends RuntimeException {
private final Fragment fragment;
public final Fragment getFragment() {
return this.fragment;
}
public /* synthetic */ Violation(Fragment fragment, String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(fragment, (i & 2) != 0 ? null : str);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public Violation(Fragment fragment, String str) {
super(str);
Intrinsics.checkNotNullParameter(fragment, "fragment");
this.fragment = fragment;
}
}