UpdaterException.php 393 B

12345678910111213
  1. <?php
  2. namespace Drupal\Core\Updater;
  3. /**
  4. * Defines a Exception class for the Drupal\Core\Updater\Updater class
  5. * hierarchy.
  6. *
  7. * This is identical to the base Exception class, we just give it a more
  8. * specific name so that call sites that want to tell the difference can
  9. * specifically catch these exceptions and treat them differently.
  10. */
  11. class UpdaterException extends \Exception {}