for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smart\EtlBundle\Exception;
use RuntimeException;
/**
* Nicolas Bastien <[email protected]>
*/
class EtlException extends RuntimeException
{
* @var string
protected $message = 'ETL Exception : "%s"';
public function __construct($message = "", $code = 0, \Exception $previous = null)
parent::__construct(sprintf($this->message, $message), $code, $previous);
}