File "SeekException.php"

Full Path: /home/amervokv/ecomlive.net/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Exception/SeekException.php
File size: 742 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Google\Site_Kit_Dependencies\GuzzleHttp\Exception;

use Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface;
/**
 * Exception thrown when a seek fails on a stream.
 */
class SeekException extends \RuntimeException implements \Google\Site_Kit_Dependencies\GuzzleHttp\Exception\GuzzleException
{
    private $stream;
    public function __construct(\Google\Site_Kit_Dependencies\Psr\Http\Message\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;
    }
}