1
0
Fork 0
mirror of synced 2024-09-21 20:11:15 +12:00
appwrite/src/Appwrite/GraphQL/GQLException.php
2022-07-12 09:52:00 +12:00

19 lines
319 B
PHP

<?php
namespace Appwrite\GraphQL;
use Appwrite\Extend\Exception;
use GraphQL\Error\ClientAware;
class GQLException extends Exception implements ClientAware
{
public function isClientSafe(): bool
{
return true;
}
public function getCategory(): string
{
return 'appwrite';
}
}