|
1
|
<?php declare(strict_types=1); |
|
2
|
|
|
3
|
namespace Automattic\WooCommerce\Vendor\GraphQL\Server; |
|
4
|
|
|
5
|
use Automattic\WooCommerce\Vendor\GraphQL\Error\ClientAware; |
|
6
|
|
|
7
|
class RequestError extends \Exception implements ClientAware |
|
8
|
{ |
|
9
|
public function isClientSafe(): bool |
|
10
|
{ |
|
11
|
return true; |
|
12
|
} |
|
13
|
} |
|
14
|
|