SlevomatCodingStandard\Helpers\TokenPointerOutOfBoundsException::__construct PHP Method

__construct() public method

public __construct ( integer $pointer, integer $lastTokenPointer, Exception $previous = null )
$pointer integer
$lastTokenPointer integer
$previous Exception
    public function __construct($pointer, $lastTokenPointer, \Exception $previous = null)
    {
        parent::__construct(sprintf('Attempted access to token pointer %d, last token pointer is %d', $pointer, $lastTokenPointer), 0, $previous);
        $this->pointer = $pointer;
        $this->lastTokenPointer = $lastTokenPointer;
    }
TokenPointerOutOfBoundsException