1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<?php
namespace Gedcomx\Rs\Client\Exception;
/**
* An exception representing an invalid query parameter.
*
* Class GedcomxInvalidQueryParameter
*
* @package Gedcomx\Rs\Client\Exception
*/
class GedcomxInvalidQueryParameter extends \Exception
{
/**
* Constructs a new invalid query parameter exception using the specified mixed variable.
*
* @param mixed $var
*/
public function __construct($var){
if (is_object($var)) {
$type = get_class($var);
} else {
$type = gettype($var);
}
parent::__construct("Unknown query parameter type: {$type}");
}
}