mirror of
https://github.com/elyby/accounts.git
synced 2024-11-02 17:03:10 +05:30
12 lines
281 B
PHP
12 lines
281 B
PHP
<?php
|
|
namespace api\components\OAuth2\Exception;
|
|
|
|
class AccessDeniedException extends \League\OAuth2\Server\Exception\AccessDeniedException {
|
|
|
|
public function __construct($redirectUri = null) {
|
|
parent::__construct();
|
|
$this->redirectUri = $redirectUri;
|
|
}
|
|
|
|
}
|