mirror of
https://github.com/appwrite/appwrite
synced 2026-05-11 19:18:28 +00:00
19 lines
319 B
PHP
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';
|
|
}
|
|
}
|