Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121318249
PhutilJSONParserException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 10, 01:09
Size
811 B
Mime Type
text/x-php
Expires
Sat, Jul 12, 01:09 (2 d)
Engine
blob
Format
Raw Data
Handle
27309917
Attached To
rPHU libphutil
PhutilJSONParserException.php
View Options
<?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
Log In to Comment