ping-identity
    Preparing search index...

    Class PushError

    Error payload returned when Push operations fail.

    All rejections from PushClient methods use this shape. The error field contains one of the PushErrorCode strings for programmatic error handling.

    try {
    await client.addCredentialFromUri(uri);
    } catch (err) {
    const pushError = err as PushError;
    if (pushError.error === 'invalid_uri') {
    // handle invalid URI
    }
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods