1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/objects/simple-php-router/test/Dummy/Exceptions/ResponseException.php
2018-06-06 03:29:44 +02:00

18 lines
No EOL
287 B
PHP

<?php
class ResponseException extends \Exception
{
protected $response;
public function __construct($response)
{
$this->response = $response;
parent::__construct('', 0);
}
public function getResponse()
{
return $this->response;
}
}