RemovedPostUpdateNameException.php 306 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Update;
  3. /**
  4. * An exception thrown for removed post-update functions.
  5. *
  6. * Occurs when a module defines hook_post_update_NAME() implementations
  7. * that are listed as removed in hook_removed_post_updates().
  8. */
  9. class RemovedPostUpdateNameException extends \LogicException {
  10. }