You are here

public function HttpException::__construct in Smart IP 7.2

Same name in this branch
  1. 7.2 includes/vendor/maxmind/web-service-common/src/Exception/HttpException.php \MaxMind\Exception\HttpException::__construct()
  2. 7.2 includes/vendor/geoip2/geoip2/src/Exception/HttpException.php \GeoIp2\Exception\HttpException::__construct()
Same name and namespace in other branches
  1. 6.2 includes/vendor/geoip2/geoip2/src/Exception/HttpException.php \GeoIp2\Exception\HttpException::__construct()
1 call to HttpException::__construct()
InvalidRequestException::__construct in includes/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php
1 method overrides HttpException::__construct()
InvalidRequestException::__construct in includes/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php

File

includes/vendor/geoip2/geoip2/src/Exception/HttpException.php, line 16

Class

HttpException
This class represents an HTTP transport error.

Namespace

GeoIp2\Exception

Code

public function __construct($message, $httpStatus, $uri, \Exception $previous = null) {
  $this->uri = $uri;
  parent::__construct($message, $httpStatus, $previous);
}