ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
SlimException.php
Go to the documentation of this file.
1
<?php
9
namespace
Slim\Exception
;
10
11
use
Exception
;
12
use
Psr\Http\Message\ServerRequestInterface
;
13
use
Psr\Http\Message\ResponseInterface
;
14
21
class
SlimException
extends
Exception
22
{
28
protected
$request
;
29
35
protected
$response
;
36
43
public
function
__construct
(
ServerRequestInterface
$request
,
ResponseInterface
$response
)
44
{
45
parent::__construct();
46
$this->request =
$request
;
47
$this->response =
$response
;
48
}
49
55
public
function
getRequest
()
56
{
57
return
$this->request
;
58
}
59
65
public
function
getResponse
()
66
{
67
return
$this->response
;
68
}
69
}
Slim\Exception\SlimException\$response
$response
Definition:
SlimException.php:35
Psr\Http\Message\ServerRequestInterface
Representation of an incoming, server-side HTTP request.
Definition:
ServerRequestInterface.php:43
Slim\Exception\SlimException\getRequest
getRequest()
Get request.
Definition:
SlimException.php:55
Slim\Exception\SlimException\getResponse
getResponse()
Get response.
Definition:
SlimException.php:65
Slim\Exception\SlimException\$request
$request
Definition:
SlimException.php:28
ServerRequestInterface
Slim\Exception
Slim Framework (https://slimframework.com)
Definition:
ContainerException.php:9
Psr\Http\Message\ResponseInterface
Representation of an outgoing, server-side response.
Definition:
ResponseInterface.php:20
Slim\Exception\SlimException\__construct
__construct(ServerRequestInterface $request, ResponseInterface $response)
Create new exception.
Definition:
SlimException.php:43
ResponseInterface
Slim\Exception\SlimException
Stop Exception.
Definition:
SlimException.php:21
Exception
libs
composer
vendor
slim
slim
Slim
Exception
SlimException.php
Generated on Sat Jan 18 2025 19:01:11 for ILIAS by
1.8.13 (using
Doxyfile
)