Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110781735
PhabricatorCustomFieldNotProxyException.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
Mon, Apr 28, 02:14
Size
462 B
Mime Type
text/x-php
Expires
Wed, Apr 30, 02:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25850814
Attached To
rPH Phabricator
PhabricatorCustomFieldNotProxyException.php
View Options
<?php
final
class
PhabricatorCustomFieldNotProxyException
extends
Exception
{
public
function
__construct
(
PhabricatorCustomField
$field
)
{
$key
=
$field
->
getFieldKey
();
$name
=
$field
->
getFieldName
();
$class
=
get_class
(
$field
);
parent
::
__construct
(
"Custom field '{$name}' (with key '{$key}', of class '{$class}') can "
.
"not have a proxy set with setProxy(), because it returned false from "
.
"canSetProxy()."
);
}
}
Event Timeline
Log In to Comment