# wordpress-seo/trunk/src/myyoast-client/infrastructure/crypto/jwt-validation-exception.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version trunk. 15 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/myyoast-client/infrastructure/crypto/jwt-validation-exception.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/myyoast-client/infrastructure/crypto/jwt-validation-exception.php
- Modified: 2026-05-12T12:03:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/myyoast-client/infrastructure/crypto/jwt-validation-exception.php#L10-L20`.

```php
<?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 JWT time-based claim validation fails.
 *
 * Covers expired tokens (exp), not-yet-valid tokens (nbf), and stale tokens (iat).
 */
class JWT_Validation_Exception extends RuntimeException {

}

```
