web/lib/Exceptions/InvalidEbookRepoFilesystemPathException.php
2024-11-04 13:16:56 -06:00

12 lines
300 B
PHP

<?
namespace Exceptions;
use Safe\DateTimeImmutable;
class InvalidEbookRepoFilesystemPathException extends AppException{
protected $message = 'Invalid RepoFilesystemPath.';
public function __construct(?string $path){
$this->message = 'Invalid RepoFilesystemPath. Not readable: ' . $path;
}
}