for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jerowork\GraphqlAttributeSchema;
use Exception;
final class SchemaBuildException extends Exception
{
public static function missingQueries(): self
return new self('No queries defined');
}
public static function missingMutations(): self
return new self('No mutations defined');