Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F32914259
AphrontUnhandledExceptionResponse.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
AphrontUnhandledExceptionResponse.php
View Options
<?php
final
class
AphrontUnhandledExceptionResponse
extends
AphrontStandaloneHTMLResponse
{
private
$exception
;
public
function
setException
(
Exception
$exception
)
{
$this
->
exception
=
$exception
;
return
$this
;
}
public
function
getHTTPResponseCode
()
{
return
500
;
}
protected
function
getResources
()
{
return
array
(
'css/application/config/config-template.css'
,
'css/application/config/unhandled-exception.css'
,
);
}
protected
function
getResponseTitle
()
{
$ex
=
$this
->
exception
;
if
(
$ex
instanceof
AphrontUsageException
)
{
return
$ex
->
getTitle
();
}
else
{
return
pht
(
'Unhandled Exception'
);
}
}
protected
function
getResponseBodyClass
()
{
return
'unhandled-exception'
;
}
protected
function
getResponseBody
()
{
$ex
=
$this
->
exception
;
if
(
$ex
instanceof
AphrontUsageException
)
{
$title
=
$ex
->
getTitle
();
}
else
{
$title
=
get_class
(
$ex
);
}
$body
=
$ex
->
getMessage
();
$body
=
phutil_escape_html_newlines
(
$body
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'unhandled-exception-detail'
,
),
array
(
phutil_tag
(
'h1'
,
array
(
'class'
=>
'unhandled-exception-title'
,
),
$title
),
phutil_tag
(
'div'
,
array
(
'class'
=>
'unhandled-exception-body'
,
),
$body
),
));
}
protected
function
buildPlainTextResponseString
()
{
$ex
=
$this
->
exception
;
return
pht
(
'%s: %s'
,
get_class
(
$ex
),
$ex
->
getMessage
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Nov 17, 9:26 PM (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
09/79/4a1b4951a3b03f12a6e27a2fe452
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment