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

12 lines
232 B
PHP
Raw Normal View History

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