1
0
mirror of https://github.com/elyby/accounts.git synced 2025-04-01 08:46:28 +05:30

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;
}
}