Spaces:
No application file
No application file
mautic
/
app
/bundles
/CampaignBundle
/Executioner
/Dispatcher
/Exception
/LogNotProcessedException.php
namespace Mautic\CampaignBundle\Executioner\Dispatcher\Exception; | |
use Mautic\CampaignBundle\Entity\LeadEventLog; | |
class LogNotProcessedException extends \Exception | |
{ | |
public function __construct(LeadEventLog $log) | |
{ | |
parent::__construct("LeadEventLog ID # {$log->getId()} must be passed to either pass() or fail()", 0, null); | |
} | |
} | |