for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Asmaster\EquipTwig\Exception;
use Twig_Error_Loader as TwigErrorLoader;
class LoaderException extends TwigErrorLoader
{
/**
* @param name $name The template name
* @param string $where The template directory path
*
* @return static
*/
public static function notFound($name, $where)
throw new static(sprintf(
'Unable to find template `%s` (looked into: %s).',
$name,
$where
));
}