for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the MindbazBundle package.
*
* (c) David DELEVOYE <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Kozikaza\MindbazBundle\Exception;
/**
* @author Vincent Chalamon <[email protected]>
class InvalidCampaignException extends \LogicException
{
public function __construct($message = 'Invalid Mindbaz campaign', $code = 0, \Exception $previous = null)
parent::__construct($message, $code, $previous);
}