Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106045593
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
Fri, Mar 21, 20:21
Size
441 B
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:21 (2 d)
Engine
blob
Format
Raw Data
Handle
25098673
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