<?php
namespace Psy\Exception;
class ParseErrorException extends \PhpParser\Error implements Exception
{
public function __construct(string $message = '', $attributes = [])
{
$message = \sprintf('PHP Parse error: %s', $message);
if (!\is_array($attributes)) {
$attributes = ['startLine' => $attributes];
}
parent::__construct($message, $attributes);
}
public static function fromParseError(\PhpParser\Error $e): self
{
return new self($e->getRawMessage(), $e->getAttributes());
}
}