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