Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F545636
PhabricatorCustomFieldImplementationIncompleteException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
728 B
Referenced Files
None
Subscribers
None
PhabricatorCustomFieldImplementationIncompleteException.php
View Options
<?php
final
class
PhabricatorCustomFieldImplementationIncompleteException
extends
Exception
{
public
function
__construct
(
PhabricatorCustomField
$field
,
$field_key_is_incomplete
=
false
)
{
if
(
$field_key_is_incomplete
)
{
$key
=
pht
(
'<incomplete key>'
);
$name
=
pht
(
'<incomplete name>'
);
}
else
{
$key
=
$field
->
getFieldKey
();
$name
=
$field
->
getFieldName
();
}
parent
::
__construct
(
pht
(
"Custom field '%s' (with key '%s', of class '%s') is incompletely "
.
"implemented: it claims to support a feature, but does not "
.
"implement all of the required methods for that feature."
,
$name
,
$key
,
get_class
(
$field
)));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:56 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
122472
Default Alt Text
PhabricatorCustomFieldImplementationIncompleteException.php (728 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment