Error thrown when decryption fails.
This can occur due to:
try { const decrypted = await helper.decrypt(encrypted);} catch (error) { if (error instanceof DecryptionError) { console.error('Decryption failed:', error.message); }} Copy
try { const decrypted = await helper.decrypt(encrypted);} catch (error) { if (error instanceof DecryptionError) { console.error('Decryption failed:', error.message); }}
Error thrown when decryption fails.
This can occur due to:
Example