ClientAware.php
2 months ago
CoercionError.php
2 months ago
DebugFlag.php
2 months ago
Error.php
2 months ago
FormattedError.php
2 months ago
InvariantViolation.php
2 months ago
ProvidesExtensions.php
2 months ago
SerializationError.php
2 months ago
SyntaxError.php
2 months ago
UserError.php
2 months ago
Warning.php
2 months ago
SyntaxError.php
19 lines
| 1 | <?php declare(strict_types=1); |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Vendor\GraphQL\Error; |
| 4 | |
| 5 | use Automattic\WooCommerce\Vendor\GraphQL\Language\Source; |
| 6 | |
| 7 | class SyntaxError extends Error |
| 8 | { |
| 9 | public function __construct(Source $source, int $position, string $description) |
| 10 | { |
| 11 | parent::__construct( |
| 12 | "Syntax Error: {$description}", |
| 13 | null, |
| 14 | $source, |
| 15 | [$position] |
| 16 | ); |
| 17 | } |
| 18 | } |
| 19 |