QueryLocationException
class QueryLocationException : RuntimeException, Parcelable
| kotlin.Any | ||||
| ↳ | kotlin.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | android.telecom.QueryLocationException | |||
This class represents a set of exceptions that can occur when requesting a Connection.queryLocationForEmergency(long, String, Executor, OutcomeReceiver)
Summary
| Constants | |
|---|---|
| static Int |
The operation has failed due to a location query being requested for a non-emergency connection. |
| static Int |
The operation has failed because it is not permitted. |
| static Int |
The operation was rejected due to an existing request. |
| static Int |
The operation was not completed on time. |
| static Int |
The operation has failed due to the service is not available. |
| static Int |
The operation has failed due to an unknown or unspecified error. |
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
QueryLocationException(message: String?) |
|
QueryLocationException(message: String?, code: Int) |
|
QueryLocationException(message: String?, code: Int, cause: Throwable?) |
|
| Public methods | |
|---|---|
| Int |
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
| Int |
getCode() |
| Unit |
writeToParcel(dest: Parcel, flags: Int)Flatten this object in to a Parcel. |
| Properties | |
|---|---|
| static Parcelable.Creator<QueryLocationException!> |
Responsible for creating QueryLocationException objects for deserialized Parcels. |
Constants
ERROR_NOT_ALLOWED_FOR_NON_EMERGENCY_CONNECTIONS
static val ERROR_NOT_ALLOWED_FOR_NON_EMERGENCY_CONNECTIONS: Int
The operation has failed due to a location query being requested for a non-emergency connection.
Value: 4ERROR_NOT_PERMITTED
static val ERROR_NOT_PERMITTED: Int
The operation has failed because it is not permitted.
Value: 3ERROR_PREVIOUS_REQUEST_EXISTS
static val ERROR_PREVIOUS_REQUEST_EXISTS: Int
The operation was rejected due to an existing request.
Value: 2ERROR_REQUEST_TIME_OUT
static val ERROR_REQUEST_TIME_OUT: Int
The operation was not completed on time.
Value: 1ERROR_SERVICE_UNAVAILABLE
static val ERROR_SERVICE_UNAVAILABLE: Int
The operation has failed due to the service is not available.
Value: 5ERROR_UNSPECIFIED
static val ERROR_UNSPECIFIED: Int
The operation has failed due to an unknown or unspecified error.
Value: 6Public constructors
QueryLocationException
QueryLocationException(message: String?)
| Parameters | |
|---|---|
message |
String?: This value may be null. |
QueryLocationException
QueryLocationException(
message: String?,
code: Int)
| Parameters | |
|---|---|
message |
String?: This value may be null. |
code |
Int: Value is one of the following: |
QueryLocationException
QueryLocationException(
message: String?,
code: Int,
cause: Throwable?)
| Parameters | |
|---|---|
message |
String?: This value may be null. |
code |
Int: Value is one of the following: |
cause |
Throwable?: This value may be null. |
Public methods
describeContents
fun describeContents(): Int
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel,int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.
| Return | |
|---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or
|
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
dest |
Parcel: This value cannot be null. |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of the following:
|
Properties
CREATOR
static val CREATOR: Parcelable.Creator<QueryLocationException!>
Responsible for creating QueryLocationException objects for deserialized Parcels.