24 lines
627 B
PHP
24 lines
627 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @author Ivan Kurnosov <zerkms@zerkms.com>
|
||
|
|
* @copyright Copyright (c) Alex Bilbie
|
||
|
|
* @license http://mit-license.org/
|
||
|
|
*
|
||
|
|
* @link https://github.com/thephpleague/oauth2-server
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace League\OAuth2\Server\Exception;
|
||
|
|
|
||
|
|
class UniqueTokenIdentifierConstraintViolationException extends OAuthServerException
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return UniqueTokenIdentifierConstraintViolationException
|
||
|
|
*/
|
||
|
|
public static function create()
|
||
|
|
{
|
||
|
|
$errorMessage = 'Could not create unique access token identifier';
|
||
|
|
|
||
|
|
return new static($errorMessage, 100, 'access_token_duplicate', 500);
|
||
|
|
}
|
||
|
|
}
|