| 1 |
<?php |
| 2 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 3 |
|
| 4 |
namespace Yoast\WP\SEO\MyYoast_Client\Application\Exceptions; |
| 5 |
|
| 6 |
use RuntimeException; |
| 7 |
|
| 8 |
/** |
| 9 |
* Exception thrown when an OIDC ID token fails validation. |
| 10 |
* |
| 11 |
* Covers structural issues (bad format, unsupported algorithm), signature |
| 12 |
* verification failures, and claim validation failures (issuer, audience, |
| 13 |
* expiration, nonce). |
| 14 |
*/ |
| 15 |
class ID_Token_Validation_Exception extends RuntimeException { |
| 16 |
|
| 17 |
} |
| 18 |
|