mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-24 08:02:37 -06:00
23 lines
526 B
Java
23 lines
526 B
Java
package io.sentry;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class HttpStatusCodeRange {
|
|
public static final int DEFAULT_MAX = 599;
|
|
public static final int DEFAULT_MIN = 500;
|
|
private final int max;
|
|
private final int min;
|
|
|
|
public boolean isInRange(int i) {
|
|
return i >= this.min && i <= this.max;
|
|
}
|
|
|
|
public HttpStatusCodeRange(int i, int i2) {
|
|
this.min = i;
|
|
this.max = i2;
|
|
}
|
|
|
|
public HttpStatusCodeRange(int i) {
|
|
this.min = i;
|
|
this.max = i;
|
|
}
|
|
}
|