for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license MIT
*/
namespace Pivasic\Bundle\Template\Exception;
* Class FileNotFoundException
* @package Pivasic\Bundle\Common\File\Exception
class FileNotFoundException extends \RuntimeException
{
* @param string $path The path to the file that was not found
public function __construct($path)
parent::__construct(sprintf('The file "%s" does not exist', $path));
}