Page MenuHomec4science

XHPASTSyntaxErrorException.php
No OneTemporary

File Metadata

Created
Tue, Nov 5, 13:45

XHPASTSyntaxErrorException.php

<?php
/**
* @group xhpast
*/
final class XHPASTSyntaxErrorException extends Exception {
protected $errorLine;
public function __construct($line, $message) {
$this->errorLine = $line;
parent::__construct($message);
}
public function getErrorLine() {
return $this->errorLine;
}
}

Event Timeline