| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ResponseException extends Exception |
||
| 10 | { |
||
| 11 | protected $content; |
||
| 12 | |||
| 13 | public function __construct($message = "", $code = 0, $content = null, Throwable $previous = null) |
||
| 14 | { |
||
| 15 | parent::__construct($message, $code, $previous); |
||
| 16 | $this->content = $content; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getContent() |
||
| 22 | } |
||
| 23 | } |