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

12 lines
297 B
PHP

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