Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | 1 | class InvalidScopeException extends OAuthException |
|
14 | { |
||
15 | |||
16 | protected string $key = 'invalid_scope'; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @param string $message |
||
21 | * @param Exception|null $previous |
||
22 | */ |
||
23 | public function __construct($message = 'Given scope does not exist', Exception $previous = null) |
||
28 |