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

12 lines
236 B
PHP
Raw Normal View History

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