Page MenuHomec4science

PhutilJSONParserException.php
No OneTemporary

File Metadata

Created
Wed, Jul 10, 01:31

PhutilJSONParserException.php

<?php
final class PhutilJSONParserException extends Exception {
private $sourceLine;
private $sourceChar;
private $sourceToken;
private $expected;
public function __construct(
$message,
$line = null,
$char = null,
$token = null,
$expected = null) {
$this->sourceLine = $line;
$this->sourceChar = $char;
$this->sourceToken = $token;
$this->expected = $expected;
parent::__construct(
pht('Parse error on line %d at column %d: %s', $line, $char, $message));
}
public function getSourceLine() {
return $this->sourceLine;
}
public function getSourceChar() {
return $this->sourceChar;
}
public function getSourceToken() {
return $this->sourceToken;
}
public function getExpectedTokens() {
return $this->expected;
}
}

Event Timeline