for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TarfinLabs\EasyPdf\Exceptions;
use Exception;
class UnableToOpen extends Exception
{
/**
* No such file exception.
*
* @param $file
* @return static
*/
public static function noSuchFile($file)
return new static("Unable to open `{$file}`: No such file.");
}