Implementation of a new request handler for OAuth 2 requests
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / user / authentication / oauth / twitter / Failure.class.php
CommitLineData
34de730b
C
1<?php
2
3namespace wcf\system\user\authentication\oauth\twitter;
4
5use wcf\system\user\authentication\oauth\Failure as BaseFailure;
6
7/**
8 * Represents request parameters for a failed/denied OAuth 2 login to Twitter.
9 *
10 * @author Olaf Braun
11 * @copyright 2001-2024 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @since 6.1
14 */
15final class Failure extends BaseFailure
16{
17 public function __construct(string $denied)
18 {
19 parent::__construct($denied);
20 }
21}