Initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.facebook.places;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public enum PlaceManager$LocationError {
|
||||
LOCATION_PERMISSION_DENIED,
|
||||
LOCATION_SERVICES_DISABLED,
|
||||
LOCATION_TIMEOUT,
|
||||
UNKNOWN_ERROR
|
||||
}
|
30
sources/com/facebook/places/internal/ScannerException.java
Normal file
30
sources/com/facebook/places/internal/ScannerException.java
Normal file
@@ -0,0 +1,30 @@
|
||||
package com.facebook.places.internal;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class ScannerException extends Exception {
|
||||
public Type type;
|
||||
|
||||
public enum Type {
|
||||
NOT_SUPPORTED,
|
||||
PERMISSION_DENIED,
|
||||
DISABLED,
|
||||
SCAN_ALREADY_IN_PROGRESS,
|
||||
UNKNOWN_ERROR,
|
||||
TIMEOUT
|
||||
}
|
||||
|
||||
public ScannerException(Type type) {
|
||||
super("Type: " + type.name());
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public ScannerException(Type type, String str) {
|
||||
super(str);
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public ScannerException(Type type, Exception exc) {
|
||||
super("Type: " + type.name(), exc);
|
||||
this.type = type;
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.facebook.places.model;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public enum CurrentPlaceRequestParams$ConfidenceLevel {
|
||||
LOW,
|
||||
MEDIUM,
|
||||
HIGH
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.facebook.places.model;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public enum CurrentPlaceRequestParams$ScanMode {
|
||||
HIGH_ACCURACY,
|
||||
LOW_LATENCY
|
||||
}
|
Reference in New Issue
Block a user