VMEError

data class VMEError(domain: String, code: Int, userInfo: Map<String, String>) : Parcelable

Encapsulates error information from VisioMove Essential SDK operations. This is the Kotlin equivalent of NSError.

Constructors

Link copied to clipboard
fun VMEError(domain: String, code: Int, userInfo: Map<String, String>)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val code: Int

An integer error code specific to the domain.

Link copied to clipboard
val domain: String

A string identifying the error's domain (e.g., "com.visioglobe.visiomoveessential.poiFilter").

Link copied to clipboard
val userInfo: Map<String, String>

A map containing additional details about the error, like a localized description.