class SeekException in Auth0 Single Sign On 8.2
Exception thrown when a seek fails on a stream.
Hierarchy
- class \GuzzleHttp\Exception\SeekException extends \GuzzleHttp\Exception\RuntimeException implements \GuzzleHttp\Exception\GuzzleException
Expanded class hierarchy of SeekException
File
- vendor/
guzzlehttp/ guzzle/ src/ Exception/ SeekException.php, line 9
Namespace
GuzzleHttp\ExceptionView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SeekException:: |
private | property | ||
SeekException:: |
public | function | ||
SeekException:: |
public | function |