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

13 lines
326 B
PHP

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