public function SeekException::__construct in Auth0 Single Sign On 8.2
File
- vendor/
guzzlehttp/ guzzle/ src/ Exception/ SeekException.php, line 13
Class
- SeekException
- Exception thrown when a seek fails on a stream.
Namespace
GuzzleHttp\ExceptionCode
public function __construct(StreamInterface $stream, $pos = 0, $msg = '') {
$this->stream = $stream;
$msg = $msg ?: 'Could not seek the stream to position ' . $pos;
parent::__construct($msg);
}