Screen\Exceptions\FileNotFoundException::__construct PHP Метод

__construct() публичный Метод

public __construct ( $path, $code, Exception $previous = null )
$previous Exception
    public function __construct($path, $code = 0, Exception $previous = null)
    {
        $message = sprintf("The file was not found at '%s'.", $path);
        parent::__construct($message, $code, $previous);
    }
FileNotFoundException