Files
kupshop/bundles/KupShop/GraphQLBundle/Exception/GraphQLValidationException.php
2025-08-02 16:30:27 +02:00

19 lines
425 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\GraphQLBundle\Exception;
use TheCodingMachine\GraphQLite\Exceptions\GraphQLException;
class GraphQLValidationException extends GraphQLException
{
public function __construct(
string $message,
?\Throwable $previous = null,
array $extensions = [],
) {
parent::__construct($message, 400, $previous, 'VALIDATION', $extensions);
}
}