CreatePublicKeyCredentialDomException


class CreatePublicKeyCredentialDomException : CreatePublicKeyCredentialException


During the create-passkey flow, this is thrown when a DOM Exception is thrown, indicating the operation contains a DOMException error type. The fido spec can be found here. The full list of implemented DOMErrors extends from and can be seen at DomError.

Throws
NullPointerException

If domError is null

Summary

Public constructors

CreatePublicKeyCredentialDomException(
    domError: DomError,
    errorMessage: CharSequence?
)

Public properties

DomError

the specific error from the DOMException types defined in the fido spec found here

Inherited properties

From kotlin.Throwable

Public constructors

CreatePublicKeyCredentialDomException

Added in 1.2.0
CreatePublicKeyCredentialDomException(
    domError: DomError,
    errorMessage: CharSequence? = null
)

Public properties

domError

Added in 1.2.0
val domErrorDomError

the specific error from the DOMException types defined in the fido spec found here