| Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Error/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Error/UserError.php |
<?php declare(strict_types=1);
namespace GraphQL\Error;
/**
* Caused by GraphQL clients and can safely be displayed.
*/
class UserError extends \RuntimeException implements ClientAware
{
public function isClientSafe(): bool
{
return true;
}
}