ParseException
class ParseException extends RuntimeException
Exception class thrown when an error occurs during parsing.
Methods
__construct(string $message, int $parsedLine = -1, string $snippet = null, string $parsedFile = null, Exception $previous = null)
No description
string
getSnippet()
Gets the snippet of code near the error.
setSnippet(string $snippet)
Sets the snippet of code near the error.
string
getParsedFile()
Gets the filename where the error occurred.
setParsedFile(string $parsedFile)
Sets the filename where the error occurred.
int
getParsedLine()
Gets the line where the error occurred.
setParsedLine(int $parsedLine)
Sets the line where the error occurred.