for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
namespace Spiral\Files\Exceptions;
* When trying to read missing file.
class FileNotFoundException extends FilesException
{
* @param string $filename
public function __construct($filename)
parent::__construct("File '{$filename}' not found");
}