mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
15 lines
353 B
PHP
15 lines
353 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Exception;
|
|
|
|
/**
|
|
* Throw this exception in any step when the step has not been executed
|
|
*/
|
|
class MigrationStepSkippedException extends \Exception
|
|
{
|
|
public function __construct($message = "", $code = 0, \Exception $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|