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