Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91302979
AphrontMalformedRequestException.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, Nov 9, 19:56
Size
1003 B
Mime Type
text/x-php
Expires
Mon, Nov 11, 19:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22239046
Attached To
rPH Phabricator
AphrontMalformedRequestException.php
View Options
<?php
/**
* These exceptions are raised when a client submits a malformed request.
*
* These errors are caught by Aphront itself and occur too early or too
* fundamentally in request handling to allow the request to route to a
* controller or survive to normal processing.
*
* These exceptions can be made "unlogged", which will prevent them from being
* logged. The intent is that errors which are purely the result of client
* failure and of no interest to the server can be raised silently to avoid
* cluttering the logs with client errors that are not actionable.
*/
final
class
AphrontMalformedRequestException
extends
AphrontException
{
private
$title
;
private
$isUnlogged
;
public
function
__construct
(
$title
,
$message
,
$unlogged
=
false
)
{
$this
->
title
=
$title
;
$this
->
isUnlogged
=
$unlogged
;
parent
::
__construct
(
$message
);
}
public
function
getTitle
()
{
return
$this
->
title
;
}
public
function
getIsUnlogged
()
{
return
$this
->
isUnlogged
;
}
}
Event Timeline
Log In to Comment