Page MenuHomec4science

XHPASTSyntaxErrorException.php
No OneTemporary

File Metadata

Created
Thu, Nov 21, 19:20

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