Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98284396
AphrontUsageException.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
Sat, Jan 11, 18:42
Size
359 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 18:42 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
23549650
Attached To
rPH Phabricator
AphrontUsageException.php
View Options
<?php
/**
* These exceptions represent user error, and are not logged.
*
* @concrete-extensible
*/
class
AphrontUsageException
extends
AphrontException
{
private
$title
;
public
function
__construct
(
$title
,
$message
)
{
$this
->
title
=
$title
;
parent
::
__construct
(
$message
);
}
public
function
getTitle
()
{
return
$this
->
title
;
}
}
Event Timeline
Log In to Comment