52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace TYPO3\CMS\Core\Http;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* Exception that has to be handled immediately in order to stop
|
|
* current execution and provide the current response. This
|
|
* exception is used as alternative to previous die() or exit().
|
|
*
|
|
* Note this exception is only caught by Application classes, throwing
|
|
* it will bypass all outer middlewares. It should *not* be thrown by
|
|
* controllers, those should usually throw a PropagateResponseException
|
|
* instead, allowing outer middlewares to further process the response.
|
|
*
|
|
* @internal
|
|
*/
|
|
class ImmediateResponseException extends \Exception
|
|
{
|
|
/**
|
|
* @var ResponseInterface
|
|
*/
|
|
private $response;
|
|
|
|
public function __construct(ResponseInterface $response, int $code = 0)
|
|
{
|
|
$this->response = $response;
|
|
$this->code = $code;
|
|
}
|
|
|
|
public function getResponse(): ResponseInterface
|
|
{
|
|
return $this->response;
|
|
}
|
|
}
|