qr_generator-1.0.1/src/Exception/QRCodeExpiredHttpException.php
src/Exception/QRCodeExpiredHttpException.php
<?php
namespace Drupal\qr_generator\Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
class QRCodeExpiredHttpException extends HttpException
{
public function __construct(string $message = '', ?\Throwable $previous = null, int $code = 0, array $headers = [])
{
parent::__construct(410, $message, $previous, $headers, $code);
}
}
