File "UserError.php"
Full Path: /home/jovision/public_html/wp/wp-content/plugins/woocommerce/lib/packages/GraphQL/Error/UserError.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8
<?php declare(strict_types=1);
namespace Automattic\WooCommerce\Vendor\GraphQL\Error;
/**
* Caused by Automattic\WooCommerce\Vendor\GraphQL clients and can safely be displayed.
*/
class UserError extends \RuntimeException implements ClientAware
{
public function isClientSafe(): bool
{
return true;
}
}