Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90345088
PhabricatorMetaMTAReceivedMailProcessingException.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, Oct 31, 18:34
Size
414 B
Mime Type
text/x-php
Expires
Sat, Nov 2, 18:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22058215
Attached To
rPH Phabricator
PhabricatorMetaMTAReceivedMailProcessingException.php
View Options
<?php
final
class
PhabricatorMetaMTAReceivedMailProcessingException
extends
Exception
{
private
$statusCode
;
public
function
getStatusCode
()
{
return
$this
->
statusCode
;
}
public
function
__construct
(
$status_code
/* ... */
)
{
$args
=
func_get_args
();
$this
->
statusCode
=
$args
[
0
];
$args
=
array_slice
(
$args
,
1
);
call_user_func_array
(
array
(
'parent'
,
'__construct'
),
$args
);
}
}
Event Timeline
Log In to Comment