23 lines
504 B
Java
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");
|
|
}
|
|
}
|
|
}
|