appwrite/src/Appwrite/GraphQL/Exception.php

20 lines
345 B
PHP
Raw Normal View History

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