eZ\Publish\Core\MVC\Exception\ParameterNotFoundException::__construct PHP Method

__construct() public method

public __construct ( $paramName, $namespace, array $triedScopes = [] )
$triedScopes array
    public function __construct($paramName, $namespace, array $triedScopes = array())
    {
        $this->message = "Parameter '{$paramName}' with namespace '{$namespace}' could not be found.";
        if (!empty($triedScopes)) {
            $this->message .= ' Tried scopes: ' . implode(', ', $triedScopes);
        }
    }
ParameterNotFoundException