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