You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
520 B
27 lines
520 B
2 years ago
|
<?php
|
||
|
|
||
|
namespace GeoIp2\Exception;
|
||
|
|
||
|
/**
|
||
|
* This class represents an error returned by MaxMind's GeoIP2
|
||
|
* web service.
|
||
|
*/
|
||
|
class InvalidRequestException extends HttpException
|
||
|
{
|
||
|
/**
|
||
|
* The code returned by the MaxMind web service.
|
||
|
*/
|
||
|
public $error;
|
||
|
|
||
|
public function __construct(
|
||
|
$message,
|
||
|
$error,
|
||
|
$httpStatus,
|
||
|
$uri,
|
||
|
\Exception $previous = null
|
||
|
) {
|
||
|
$this->error = $error;
|
||
|
parent::__construct($message, $httpStatus, $uri, $previous);
|
||
|
}
|
||
|
}
|