mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
18 lines
No EOL
287 B
PHP
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;
|
|
}
|
|
|
|
} |