mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
18 lines
287 B
PHP
18 lines
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;
|
|
}
|
|
|
|
} |