Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101706332
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
Wed, Feb 12, 22:35
Size
520 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 22:35 (2 d)
Engine
blob
Format
Raw Data
Handle
24215729
Attached To
rPH Phabricator
PhabricatorCustomFieldImplementationIncompleteException.php
View Options
<?php
final
class
PhabricatorCustomFieldImplementationIncompleteException
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}') is "
.
"incompletely implemented: it claims to support a feature, but does not "
.
"implement all of the required methods for that feature."
);
}
}
Event Timeline
Log In to Comment