Added in API level 34

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

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

Int

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<CallEndpointException!>

Responsible for creating CallEndpointException objects for deserialized Parcels.

Constants

ERROR_ANOTHER_REQUEST

Added in API level 34
static val ERROR_ANOTHER_REQUEST: Int

The operation was canceled by another request.

Value: 3

ERROR_ENDPOINT_DOES_NOT_EXIST

Added in API level 34
static val ERROR_ENDPOINT_DOES_NOT_EXIST: Int

The operation has failed because requested CallEndpoint does not exist.

Value: 1

ERROR_REQUEST_TIME_OUT

Added in API level 34
static val ERROR_REQUEST_TIME_OUT: Int

The operation was not completed on time.

Value: 2

ERROR_UNSPECIFIED

Added in API level 34
static val ERROR_UNSPECIFIED: Int

The operation has failed due to an unknown or unspecified error.

Value: 4

Public constructors

CallEndpointException

Added in API level 34
CallEndpointException(
    message: String?,
    code: Int)
Parameters
message String?: This value may be null.
code Int: Value is one of the following:

Public methods

describeContents

Added in API level 34
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

getCode

Added in API level 34
fun getCode(): Int
Return
Int Value is one of the following:

writeToParcel

Added in API level 34
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

Added in API level 34
static val CREATOR: Parcelable.Creator<CallEndpointException!>

Responsible for creating CallEndpointException objects for deserialized Parcels.