class FilesystemException
Exception thrown when issues exist on local filesystem
@author Javier Spagnoletti <jspagnoletti@javierspagnoletti.com.ar>
Hierarchy
- class \Composer\Downloader\FilesystemException extends \Composer\Downloader\Exception
Expanded class hierarchy of FilesystemException
1 file declares its use of FilesystemException
- SelfUpdateCommand.php in vendor/
composer/ composer/ src/ Composer/ Command/ SelfUpdateCommand.php
File
-
vendor/
composer/ composer/ src/ Composer/ Downloader/ FilesystemException.php, line 20
Namespace
Composer\DownloaderView source
class FilesystemException extends \Exception {
public function __construct(string $message = '', int $code = 0, ?\Exception $previous = null) {
parent::__construct("Filesystem exception: \n" . $message, $code, $previous);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
FilesystemException::__construct | public | function |