You are here

UpdaterException.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Updater/UpdaterException.php

File

core/lib/Drupal/Core/Updater/UpdaterException.php
View source
<?php

namespace Drupal\Core\Updater;


/**
 * Defines an Exception class for the Drupal\Core\Updater\Updater class
 * hierarchy.
 *
 * This is identical to the base Exception class, we just give it a more
 * specific name so that call sites that want to tell the difference can
 * specifically catch these exceptions and treat them differently.
 */
class UpdaterException extends \Exception {

}

Classes

Namesort descending Description
UpdaterException Defines an Exception class for the Drupal\Core\Updater\Updater class hierarchy.