Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91061482
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
Thu, Nov 7, 11:19
Size
359 B
Mime Type
text/x-php
Expires
Sat, Nov 9, 11:19 (2 d)
Engine
blob
Format
Raw Data
Handle
22188418
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