Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109662599
PhabricatorCustomFieldImplementationIncompleteException.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
Tue, Apr 22, 22:00
Size
728 B
Mime Type
text/x-php
Expires
Thu, Apr 24, 22:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25745842
Attached To
rPH Phabricator
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
)));
}
}
Event Timeline
Log In to Comment