Page MenuHomestyx hydra

PhabricatorCustomFieldImplementationIncompleteException.php
No OneTemporary

PhabricatorCustomFieldImplementationIncompleteException.php

<?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();
}
$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.");
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 26, 10:15 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1548951
Default Alt Text
PhabricatorCustomFieldImplementationIncompleteException.php (702 B)

Event Timeline