1
0
Fork 0
mirror of synced 2024-09-12 07:36:01 +12:00
appwrite/src/Appwrite/GraphQL/Exception.php
2022-10-12 13:59:35 +13:00

19 lines
345 B
PHP

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