Your IP : 216.73.217.13


Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Error/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Error/SyntaxError.php

<?php declare(strict_types=1);

namespace GraphQL\Error;

use GraphQL\Language\Source;

class SyntaxError extends Error
{
    public function __construct(Source $source, int $position, string $description)
    {
        parent::__construct(
            "Syntax Error: {$description}",
            null,
            $source,
            [$position]
        );
    }
}