Page MenuHomec4science

PhabricatorApplicationTransactionStructureException.php
No OneTemporary

File Metadata

Created
Fri, Jun 28, 09:45

PhabricatorApplicationTransactionStructureException.php

<?php
final class PhabricatorApplicationTransactionStructureException
extends Exception {
public function __construct(
PhabricatorApplicationTransaction $xaction,
$message) {
$full_message = pht(
'Attempting to apply a transaction (of class "%s", with type "%s") '.
'which has not been constructed correctly: %s',
get_class($xaction),
$xaction->getTransactionType(),
$message);
parent::__construct($full_message);
}
}

Event Timeline