Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93216018
PhabricatorClusterExceptionHandler.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, Nov 27, 02:22
Size
960 B
Mime Type
text/x-php
Expires
Fri, Nov 29, 02:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22597327
Attached To
rPH Phabricator
PhabricatorClusterExceptionHandler.php
View Options
<?php
final
class
PhabricatorClusterExceptionHandler
extends
PhabricatorRequestExceptionHandler
{
public
function
getRequestExceptionHandlerPriority
()
{
return
300000
;
}
public
function
getRequestExceptionHandlerDescription
()
{
return
pht
(
'Handles runtime problems with cluster configuration.'
);
}
public
function
canHandleRequestException
(
AphrontRequest
$request
,
Exception
$ex
)
{
return
(
$ex
instanceof
PhabricatorClusterException
);
}
public
function
handleRequestException
(
AphrontRequest
$request
,
Exception
$ex
)
{
$viewer
=
$this
->
getViewer
(
$request
);
$title
=
$ex
->
getExceptionTitle
();
$dialog
=
id
(
new
AphrontDialogView
())
->
setTitle
(
$title
)
->
setUser
(
$viewer
)
->
appendParagraph
(
$ex
->
getMessage
())
->
addCancelButton
(
'/'
,
pht
(
'Proceed With Caution'
));
return
id
(
new
AphrontDialogResponse
())
->
setDialog
(
$dialog
)
->
setHTTPResponseCode
(
500
);
}
}
Event Timeline
Log In to Comment