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