package kotlin; import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes5.dex */ public final class NotImplementedError extends Error { /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ public NotImplementedError(String message) { super(message); Intrinsics.checkNotNullParameter(message, "message"); } public /* synthetic */ NotImplementedError(String str, int i, DefaultConstructorMarker defaultConstructorMarker) { this((i & 1) != 0 ? "An operation is not implemented." : str); } }