pdf-finder/src/IO/Exception/MissingFileArgumentExceptio...

13 lines
192 B
PHP

<?php
namespace IO\Exception;
class MissingFileArgumentException extends IOException
{
public function __construct()
{
parent::__construct('Missing file argument');
}
}