mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
11 lines
300 B
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;
|
|
}
|
|
}
|