[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorApplicationTransactionStructureException 4 extends Exception { 5 6 public function __construct( 7 PhabricatorApplicationTransaction $xaction, 8 $message) { 9 10 $full_message = pht( 11 'Attempting to apply a transaction (of class "%s", with type "%s") '. 12 'which has not been constructed correctly: %s', 13 get_class($xaction), 14 $xaction->getTransactionType(), 15 $message); 16 17 parent::__construct($full_message); 18 } 19 20 }
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 |