pdf-finder/src/IO/Exception/FileNotFoundException.php

12 lines
212 B
PHP

<?php
namespace IO\Exception;
class FileNotFoundException extends IOException
{
public function __construct(string $file)
{
parent::__construct(sprintf('File \'%s\' not found', $file));
}
}