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

13 lines
192 B
PHP
Raw Normal View History

2021-03-23 21:58:40 +01:00
<?php
namespace IO\Exception;
class MissingFileArgumentException extends IOException
{
public function __construct()
{
parent::__construct('Missing file argument');
}
}