Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109785522
PhabricatorAjaxRequestExceptionHandler.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
Wed, Apr 23, 09:25
Size
924 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 09:25 (2 d)
Engine
blob
Format
Raw Data
Handle
25737284
Attached To
rPH Phabricator
PhabricatorAjaxRequestExceptionHandler.php
View Options
<?php
final
class
PhabricatorAjaxRequestExceptionHandler
extends
PhabricatorRequestExceptionHandler
{
public
function
getRequestExceptionHandlerPriority
()
{
return
110000
;
}
public
function
getRequestExceptionHandlerDescription
()
{
return
pht
(
'Responds to requests made by AJAX clients.'
);
}
public
function
canHandleRequestException
(
AphrontRequest
$request
,
Exception
$ex
)
{
// For non-workflow requests, return a Ajax response.
return
(
$request
->
isAjax
()
&&
!
$request
->
isWorkflow
());
}
public
function
handleRequestException
(
AphrontRequest
$request
,
Exception
$ex
)
{
// Log these; they don't get shown on the client and can be difficult
// to debug.
phlog
(
$ex
);
$response
=
new
AphrontAjaxResponse
();
$response
->
setError
(
array
(
'code'
=>
get_class
(
$ex
),
'info'
=>
$ex
->
getMessage
(),
));
return
$response
;
}
}
Event Timeline
Log In to Comment