Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Updater / UpdaterFileTransferException.php
1 <?php
2
3 namespace Drupal\Core\Updater;
4
5 /**
6  * Defines a child class of Drupal\Core\Updater\UpdaterException that indicates
7  * a Drupal\Core\FileTransfer\FileTransfer exception.
8  *
9  * We have to catch Drupal\Core\FileTransfer\FileTransfer exceptions
10  * and wrap those in t(), since Drupal\Core\FileTransfer\FileTransfer
11  * is so low-level that it doesn't use any Drupal APIs and none of the strings
12  * are translated.
13  */
14 class UpdaterFileTransferException extends UpdaterException {
15 }