Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/customfield/exception/PhabricatorCustomFieldDataNotAvailableException.php
13410 views
1
<?php
2
3
final class PhabricatorCustomFieldDataNotAvailableException extends Exception {
4
5
public function __construct(PhabricatorCustomField $field) {
6
parent::__construct(
7
pht(
8
"Custom field '%s' (with key '%s', of class '%s') is attempting ".
9
"to access data which is not available in this context.",
10
$field->getFieldName(),
11
$field->getFieldKey(),
12
get_class($field)));
13
}
14
15
}
16
17