You are here

public function EmptyOrInvalidParameterException::__construct in Auth0 Single Sign On 8.2

EmptyOrInvalidParameterException constructor.

Parameters

string $parameter_name The parameter name that is missing or invalid.:

File

vendor/auth0/auth0-php/src/Exception/EmptyOrInvalidParameterException.php, line 16

Class

EmptyOrInvalidParameterException
Represents all errors generated by SDK itself.

Namespace

Auth0\SDK\Exception

Code

public function __construct($parameter_name) {
  parent::__construct('Empty or invalid ' . $parameter_name . '.');
}