Files
animethemes-server/app/Exceptions/GraphQL/ClientForbiddenException.php
T

20 lines
310 B
PHP

<?php
declare(strict_types=1);
namespace App\Exceptions\GraphQL;
use Exception;
use GraphQL\Error\ClientAware;
/**
* Thrown when query is not allowed.
*/
class ClientForbiddenException extends Exception implements ClientAware
{
public function isClientSafe(): bool
{
return true;
}
}