You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The returned result is a [ReclaimVerificationApi.Response] object. This object contains a response that has proofs, exception, and the sessionId if the verification is successful.
235
+
The returned result is a [ReclaimVerification.Response] object. This object contains a response that has proofs, exception, and the sessionId if the verification is successful.
236
236
237
237
### Exception Handling
238
238
239
-
If the verification ends with an exception, the exception is thrown as a [ReclaimVerificationApi.ReclaimVerificationException] object.
239
+
If the verification ends with an exception, the exception is thrown as a [ReclaimVerification.ReclaimVerificationException] object.
240
240
241
241
Following is an example of how to handle the exception using [error.type]:
242
242
243
243
```js
244
244
try {
245
245
// ... start verification
246
246
} catch (error) {
247
-
if (error instanceofReclaimVerificationApi.ReclaimVerificationException) {
247
+
if (error instanceofReclaimVerification.ReclaimVerificationException) {
0 commit comments