mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
14 lines
344 B
PHP
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);
|
|
}
|
|
}
|