Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120047367
PhabricatorCustomFieldDataNotAvailableException.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, Jul 1, 14:06
Size
441 B
Mime Type
text/x-php
Expires
Thu, Jul 3, 14:06 (2 d)
Engine
blob
Format
Raw Data
Handle
27131031
Attached To
rPH Phabricator
PhabricatorCustomFieldDataNotAvailableException.php
View Options
<?php
final
class
PhabricatorCustomFieldDataNotAvailableException
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 "
.
"attempting to access data which is not available in this context."
);
}
}
Event Timeline
Log In to Comment