mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 17:02:18 +01:00
14 lines
348 B
PHP
14 lines
348 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Exception;
|
|
|
|
class AfterMigrationExecutionException extends \Exception
|
|
{
|
|
public function __construct($message = "", $step = 0, \Exception $previous = null)
|
|
{
|
|
$message = "Error after execution of step $step: " . $message;
|
|
|
|
parent::__construct($message, $step, $previous);
|
|
}
|
|
}
|