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