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