Files
ezmigrationbundle/API/Exception/MigrationStepExecutionException.php
2017-02-11 10:46:03 +00:00

14 lines
344 B
PHP

<?php
namespace Kaliop\eZMigrationBundle\API\Exception;
class MigrationStepExecutionException extends \Exception
{
public function __construct($message = "", $step = 0, \Exception $previous = null)
{
$message = "Error in execution of step $step: " . $message;
parent::__construct($message, $step, $previous);
}
}