Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104143485
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
Thu, Mar 6, 17:46
Size
462 B
Mime Type
text/x-php
Expires
Sat, Mar 8, 17:46 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24663738
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