WatchFacePushManager.ListWatchFacesException


class WatchFacePushManager.ListWatchFacesException : Exception


An exception that can be thrown by listWatchFaces

Summary

Constants

const Int

Unknown error while listing watch faces.

Public constructors

ListWatchFacesException(errorCode: Int, rootCause: Throwable)

Public properties

Int

The specific subtype of error occurred.

open String?

Inherited properties

From kotlin.Throwable

Constants

ERROR_UNKNOWN

const val ERROR_UNKNOWNInt

Unknown error while listing watch faces. Typically this means that the Watch Face Push service on the watch could not be accessed or that the watch may be in a bad state.

Public constructors

ListWatchFacesException

Added in 1.0.0-alpha01
ListWatchFacesException(errorCode: Int, rootCause: Throwable)
Parameters
errorCode: Int

The specific subtype of error occurred. See ErrorCode for the possible values.

rootCause: Throwable

The exception that caused the problem in the first place.

Public properties

errorCode

Added in 1.0.0-alpha01
val errorCodeInt

The specific subtype of error occurred. See ErrorCode for the possible values.

message

open val messageString?