Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class UnsupportedResponseTypeException extends OAuthException |
||
14 | { |
||
15 | |||
16 | protected string $key = 'unsupported_response_type'; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @param string $message |
||
21 | * @param Exception|null $previous |
||
22 | */ |
||
23 | public function __construct($message = 'Grant type not supported', Exception $previous = null) |
||
28 |