Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MigrateSkipProcessException.php

class MigrateSkipProcessException

This exception is thrown when the rest of the process should be skipped.

Hierarchy

  • class \Drupal\migrate\MigrateSkipProcessException extends \Drupal\migrate\Exception

Expanded class hierarchy of MigrateSkipProcessException

Deprecated

in drupal:10.3.0 and is removed from drupal:12.0.0. Return FALSE from a process plugin's isPipelineStopped() method to stop further processing on a pipeline.

See also

https://www.drupal.org/node/3414511

File

core/modules/migrate/src/MigrateSkipProcessException.php, line 13

Namespace

Drupal\migrate
View source
class MigrateSkipProcessException extends \Exception {
    public function __construct(string $message = "", int $code = 0, ?\Throwable $previous = NULL) {
        trigger_error(__CLASS__ . " is deprecated in drupal:10.3.0 and is removed from drupal:12.0.0. Return TRUE from a process plugin's isPipelineStopped() method to halt further processing on a pipeline. See https://www.drupal.org/node/3414511", E_USER_DEPRECATED);
        parent::__construct($message, $code, $previous);
    }

}

Members

Title Sort descending Modifiers Object type Summary
MigrateSkipProcessException::__construct public function

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal