for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Andi\GraphQL\Exception;
class NotFoundException extends \Exception implements GraphQLExceptionInterface
{
public static function create(string $type): self
return new self(\sprintf('Can\'t resolve GraphQL type: "%s"', $type));
}