Additional Ebook validation

This commit is contained in:
Mike Colagrosso 2024-04-26 23:52:28 -06:00 committed by Alex Cabal
parent 3ef1af1237
commit 032032b920
22 changed files with 262 additions and 2 deletions

View file

@ -0,0 +1,12 @@
<?
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;
}
}