70 lines
1.4 KiB
PHP
70 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Slim Framework (http://slimframework.com)
|
|
*
|
|
* @link https://github.com/slimphp/Slim
|
|
* @copyright Copyright (c) 2011-2015 Josh Lockhart
|
|
* @license https://github.com/slimphp/Slim/blob/3.x/LICENSE.md (MIT License)
|
|
*/
|
|
namespace Slim\Exception;
|
|
|
|
use Exception;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* Stop Exception
|
|
*
|
|
* This Exception is thrown when the Slim application needs to abort
|
|
* processing and return control flow to the outer PHP script.
|
|
*/
|
|
class SlimException extends Exception
|
|
{
|
|
/**
|
|
* A request object
|
|
*
|
|
* @var ServerRequestInterface
|
|
*/
|
|
protected $request;
|
|
|
|
/**
|
|
* A response object to send to the HTTP client
|
|
*
|
|
* @var ResponseInterface
|
|
*/
|
|
protected $response;
|
|
|
|
/**
|
|
* Create new exception
|
|
*
|
|
* @param ServerRequestInterface $request
|
|
* @param ResponseInterface $response
|
|
*/
|
|
public function __construct(ServerRequestInterface $request, ResponseInterface $response)
|
|
{
|
|
parent::__construct();
|
|
$this->request = $request;
|
|
$this->response = $response;
|
|
}
|
|
|
|
/**
|
|
* Get request
|
|
*
|
|
* @return ServerRequestInterface
|
|
*/
|
|
public function getRequest()
|
|
{
|
|
return $this->request;
|
|
}
|
|
|
|
/**
|
|
* Get response
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function getResponse()
|
|
{
|
|
return $this->response;
|
|
}
|
|
}
|