friendship ended with social-app. php is my new best friend
1<?php
2/**
3 * Class CSRFStateMismatchException
4 *
5 * @created 19.03.2024
6 * @author smiley <smiley@chillerlan.net>
7 * @copyright 2024 smiley
8 * @license MIT
9 */
10declare(strict_types=1);
11
12namespace chillerlan\OAuth\Core;
13
14use chillerlan\OAuth\OAuthException;
15
16/**
17 * Thrown on mismatching CSRF ("state") token
18 *
19 * @see \chillerlan\OAuth\Core\CSRFToken
20 */
21class CSRFStateMismatchException extends OAuthException{
22
23}