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

20 lines
345 B
PHP
Raw Normal View History

2022-04-08 17:54:51 +12:00
<?php
namespace Appwrite\GraphQL;
2022-10-12 13:59:35 +13:00
use Appwrite\Extend\Exception as AppwriteException;
2022-04-08 17:54:51 +12:00
use GraphQL\Error\ClientAware;
2022-10-12 13:59:35 +13:00
class Exception extends AppwriteException implements ClientAware
2022-04-08 17:54:51 +12:00
{
public function isClientSafe(): bool
{
return true;
}
public function getCategory(): string
{
return 'appwrite';
}
2022-07-12 09:52:00 +12:00
}