web/lib/Exceptions/InvalidEbookRepoFilesystemPathException.php

11 lines
300 B
PHP

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