mantis-matrix-integration – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <?php
2  
3 namespace MatrixPhp\Exceptions;
4  
5 /**
6 * The home server gave an unexpected response.
7 *
8 * @package MatrixPhp\Exceptions
9 */
10 class MatrixUnexpectedResponse extends MatrixException {
11  
12 protected $content;
13  
14 function __construct(string $content = '') {
15 parent::__construct($content);
16 $this->content = $content;
17 }
18  
19 /**
20 * @return string
21 */
22 public function getContent(): string {
23 return $this->content;
24 }
25 }