mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
11 lines
221 B
PHP
11 lines
221 B
PHP
<?php
|
|
|
|
namespace OAuth\OAuth2\Service\Exception;
|
|
|
|
/**
|
|
* Exception thrown when the state parameter received during the authorization process is invalid.
|
|
*/
|
|
class InvalidAuthorizationStateException extends \Exception
|
|
{
|
|
}
|