File "RequestError.php"

Full Path: /home/jovision/public_html/wp/wp-content/plugins/woocommerce/lib/packages/GraphQL/Server/RequestError.php
File size: 290 bytes
MIME-type: text/x-php
Charset: utf-8

<?php declare(strict_types=1);

namespace Automattic\WooCommerce\Vendor\GraphQL\Server;

use Automattic\WooCommerce\Vendor\GraphQL\Error\ClientAware;

class RequestError extends \Exception implements ClientAware
{
    public function isClientSafe(): bool
    {
        return true;
    }
}