appwrite/src/Appwrite/GraphQL/GQLException.php

19 lines
318 B
PHP
Raw Normal View History

2022-04-08 05:54:51 +00:00
<?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';
}
}