mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
20 lines
310 B
PHP
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;
|
|
}
|
|
}
|