CallEndpointException
class CallEndpointException : RuntimeException, Parcelable
| kotlin.Any | ||||
| ↳ | kotlin.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | android.telecom.CallEndpointException | |||
This class represents a set of exceptions that can occur when requesting a CallEndpoint change.
Summary
| Constants | |
|---|---|
| static Int | The operation was canceled by another request. | 
| static Int | The operation has failed because requested CallEndpoint does not exist. | 
| static Int | The operation was not completed on time. | 
| static Int | The operation has failed due to an unknown or unspecified error. | 
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| CallEndpointException(message: String?, code: Int) | |
| Public methods | |
|---|---|
| Int | |
| Int | getCode() | 
| Unit | writeToParcel(dest: Parcel, flags: Int) | 
| Properties | |
|---|---|
| static Parcelable.Creator<CallEndpointException!> | Responsible for creating CallEndpointException objects for deserialized Parcels. | 
Constants
ERROR_ANOTHER_REQUEST
static val ERROR_ANOTHER_REQUEST: Int
The operation was canceled by another request.
Value: 3ERROR_ENDPOINT_DOES_NOT_EXIST
static val ERROR_ENDPOINT_DOES_NOT_EXIST: Int
The operation has failed because requested CallEndpoint does not exist.
Value: 1ERROR_REQUEST_TIME_OUT
static val ERROR_REQUEST_TIME_OUT: Int
The operation was not completed on time.
Value: 2ERROR_UNSPECIFIED
static val ERROR_UNSPECIFIED: Int
The operation has failed due to an unknown or unspecified error.
Value: 4Public constructors
CallEndpointException
CallEndpointException(
message: String?,
code: Int)
| Parameters | |
|---|---|
| message | String?: This value may be null. | 
| code | Int: Value is android.telecom.CallEndpointException#ERROR_ENDPOINT_DOES_NOT_EXIST,android.telecom.CallEndpointException#ERROR_REQUEST_TIME_OUT,android.telecom.CallEndpointException#ERROR_ANOTHER_REQUEST, orandroid.telecom.CallEndpointException#ERROR_UNSPECIFIED | 
Public methods
describeContents
fun describeContents(): Int
| Return | |
|---|---|
| Int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getCode
fun getCode(): Int
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
| Parameters | |
|---|---|
| dest | Parcel: The Parcel in which the object should be written. 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 either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
Properties
CREATOR
static val CREATOR: Parcelable.Creator<CallEndpointException!>
Responsible for creating CallEndpointException objects for deserialized Parcels.
