PATH:
home
/
lab2454c
/
internationalminersbank.com
/
backup
/
vendor
/
league
/
flysystem
/
src
<?php namespace League\Flysystem; use Exception as BaseException; class FileNotFoundException extends Exception { /** * @var string */ protected $path; /** * Constructor. * * @param string $path * @param int $code * @param \Exception $previous */ public function __construct($path, $code = 0, BaseException $previous = null) { $this->path = $path; parent::__construct('File not found at path: ' . $this->getPath(), $code, $previous); } /** * Get the path which was not found. * * @return string */ public function getPath() { return $this->path; } }
[-] ConnectionRuntimeException.php
[edit]
[-] FilesystemNotFoundException.php
[edit]
[-] File.php
[edit]
[+]
Plugin
[+]
..
[-] Config.php
[edit]
[-] InvalidRootException.php
[edit]
[-] RootViolationException.php
[edit]
[-] CorruptedPathDetected.php
[edit]
[-] ConfigAwareTrait.php
[edit]
[-] FilesystemException.php
[edit]
[-] ConnectionErrorException.php
[edit]
[-] Directory.php
[edit]
[-] PluginInterface.php
[edit]
[-] FileNotFoundException.php
[edit]
[-] FilesystemInterface.php
[edit]
[-] FileExistsException.php
[edit]
[-] AdapterInterface.php
[edit]
[-] Util.php
[edit]
[-] SafeStorage.php
[edit]
[-] MountManager.php
[edit]
[-] Handler.php
[edit]
[+]
Util
[-] Exception.php
[edit]
[-] Filesystem.php
[edit]
[+]
Adapter
[-] ReadInterface.php
[edit]
[-] NotSupportedException.php
[edit]
[-] UnreadableFileException.php
[edit]