mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 17:56:30 +05:30
23 lines
433 B
PHP
23 lines
433 B
PHP
<?php
|
|
namespace common\components\oauth\Exception;
|
|
|
|
use League\OAuth2\Server\Exception\OAuthException;
|
|
|
|
class AcceptRequiredException extends OAuthException {
|
|
|
|
public $httpStatusCode = 401;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $errorType = 'accept_required';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function __construct() {
|
|
parent::__construct('Client must accept authentication request.');
|
|
}
|
|
|
|
}
|