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

20 lines
319 B
PHP
Raw Normal View History

2022-04-08 17:54:51 +12: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';
}
2022-07-12 09:52:00 +12:00
}