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

12 lines
212 B
PHP
Raw Normal View History

2021-03-23 21:58:40 +01:00
<?php
namespace IO\Exception;
class FileNotFoundException extends IOException
{
public function __construct(string $file)
{
parent::__construct(sprintf('File \'%s\' not found', $file));
}
}