- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
26 lines
840 B
Java
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;
|
|
}
|
|
}
|