Файл: sngine-v2.8/Script/includes/libs/Embed/Exceptions/InvalidUrlException.php
Строк: 29
<?php
namespace EmbedExceptions;
use EmbedHttpResponse;
class InvalidUrlException extends EmbedException
{
/**
* @var Response|null
*/
private $response;
/**
* Set the response related with this error
*
* @param Response
*/
public function setResponse(Response $response)
{
$this->response = $response;
}
/**
* Get the response related with this error
*
* @return Response|null
*/
public function getResponse()
{
return $this->response;
}
}