You are here

class SeekException in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/guzzlehttp/guzzle/src/Exception/SeekException.php \GuzzleHttp\Exception\SeekException

Exception thrown when a seek fails on a stream.

Hierarchy

Expanded class hierarchy of SeekException

File

vendor/guzzlehttp/guzzle/src/Exception/SeekException.php, line 9

Namespace

GuzzleHttp\Exception
View source
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;
  }

}

Members