芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php
* @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class AccessDeniedException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 401; /** * {@inheritdoc} */ public $errorType = 'access_denied'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('The resource owner or authorization server denied the request.'); } }