Files
ezmigrationbundle/API/Exception/MigrationStepSkippedException.php
2018-04-09 23:17:32 +01:00

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);
}
}