[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorCustomFieldNotProxyException 4 extends Exception { 5 6 public function __construct(PhabricatorCustomField $field) { 7 $key = $field->getFieldKey(); 8 $name = $field->getFieldName(); 9 $class = get_class($field); 10 11 parent::__construct( 12 "Custom field '{$name}' (with key '{$key}', of class '{$class}') can ". 13 "not have a proxy set with setProxy(), because it returned false from ". 14 "canSetProxy()."); 15 } 16 17 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |