SeekException.php in Auth0 Single Sign On 8.2
File
vendor/guzzlehttp/guzzle/src/Exception/SeekException.php
View source
<?php
namespace GuzzleHttp\Exception;
use Psr\Http\Message\StreamInterface;
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);
}
public function getStream() {
return $this->stream;
}
}