mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 14:50:39 -04:00
12 lines
300 B
PHP
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;
|
|
}
|
|
}
|