• File: encryption-exception.php
  • Full Path: /home/docteuh/www/cache-store-unix/src/infrastructure/crypto/encryption-exception.php
  • Date Modified: 06/23/2026 4:19 PM
  • File size: 405 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\MyYoast_Client\Infrastructure\Crypto;

use RuntimeException;

/**
 * Exception thrown when encryption or decryption operations fail.
 *
 * Covers missing sodium extension, corrupt encrypted data, or missing AUTH_KEY.
 */
class Encryption_Exception extends RuntimeException {

}