GeoIP2-php/src/GeoIP2/Exception/WebserviceException.php

16 lines
339 B
PHP
Raw Normal View History

<?php
namespace GeoIP2\Exception;
class WebserviceException extends HttpException
{
public $httpStatus;
public function __construct($message, $code, $httpStatus, $uri,
Exception $previous = null)
{
$this->httpStatus = $httpStatus;
parent::__construct($message, $code, $uri, $previous);
}
}