for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\GraphQL\Controllers\Annotations\Exceptions;
use InvalidArgumentException;
class ClassNotFoundException extends InvalidArgumentException
{
public static function couldNotFindClass(string $className): self
return new self("Could not autoload class '$className'");
}
public static function wrapException(self $e, string $className): self
return new self($e->getMessage()." defined in @Type annotation of class '$className'");