1<?php
2
3namespace OAuth\OAuth2\Service\Exception;
4
5/**
6 * Exception thrown when the state parameter received during the authorization process is invalid.
7 */
8class InvalidAuthorizationStateException extends \Exception
9{
10}
11