11 lines
176 B
PHP
11 lines
176 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Drupal\migrate;
|
||
|
|
||
|
/**
|
||
|
* This exception is thrown when the rest of the process should be skipped.
|
||
|
*/
|
||
|
class MigrateSkipProcessException extends \Exception {
|
||
|
|
||
|
}
|