jimu-decompiled/sources/com/google/common/math/MathPreconditions.java
2025-05-13 19:24:51 +02:00

23 lines
504 B
Java

package com.google.common.math;
/* loaded from: classes.dex */
final class MathPreconditions {
static void a(boolean z) {
if (!z) {
throw new ArithmeticException("not in range");
}
}
static void b(boolean z) {
if (!z) {
throw new ArithmeticException("overflow");
}
}
static void c(boolean z) {
if (!z) {
throw new ArithmeticException("mode was UNNECESSARY, but rounding was necessary");
}
}
}