Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97256745
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
Fri, Jan 3, 20:22
Size
462 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 20:22 (2 d)
Engine
blob
Format
Raw Data
Handle
23366645
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