make it possible to retrieve from Response error http codes; introduce custom excepti...
[plcapi.git] / src / Exception / HttpException.php
1 <?php
2
3 namespace PhpXmlRpc\Exception;
4
5 class HttpException extends PhpXmlrpcException
6 {
7     protected $statusCode;
8
9     public function __construct($message = "", $code = 0, $previous = null, $statusCode = null)
10     {
11         parent::__construct($message, $code, $previous);
12         $this->statusCode = $statusCode;
13     }
14
15     public function statusCode()
16     {
17         return $this->statusCode;
18     }
19 }