📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 04:13:50
📂
/ (Root)
/
home
/
apkbfjox
/
kattu.com.pk
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Exception
📍 /home/apkbfjox/kattu.com.pk/wp-content/plugins/updraftplus/vendor/guzzlehttp/guzzle/src/Exception
🔄 Refresh
✏️
Editing: SeekException.php
Writable
<?php namespace GuzzleHttp\Exception; use Psr\Http\Message\StreamInterface; /** * Exception thrown when a seek fails on a stream. */ class SeekException extends \RuntimeException implements GuzzleException { private $stream; public function __construct(StreamInterface $stream, $pos = 0, $msg = '') { $this->stream = $stream; $msg = $msg ?: 'Could not seek the stream to position ' . $pos; parent::__construct($msg); } /** * @return StreamInterface */ public function getStream() { return $this->stream; } }
💾 Save Changes
❌ Cancel