pm-convert/src/Exceptions/DirectoryNotExistsException...

12 lines
140 B
PHP

<?php
declare(strict_types=1);
namespace PmConverter\Exceptions;
use Exception;
class DirectoryNotExistsException extends Exception
{
}