class FileTransferException

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/FileTransfer/FileTransferException.php \Drupal\Core\FileTransfer\FileTransferException
  2. 10 core/lib/Drupal/Core/FileTransfer/FileTransferException.php \Drupal\Core\FileTransfer\FileTransferException
  3. 9 core/lib/Drupal/Core/FileTransfer/FileTransferException.php \Drupal\Core\FileTransfer\FileTransferException
  4. 8.9.x core/lib/Drupal/Core/FileTransfer/FileTransferException.php \Drupal\Core\FileTransfer\FileTransferException

FileTransferException class.

Hierarchy

Expanded class hierarchy of FileTransferException

File

includes/filetransfer/filetransfer.inc, line 365

View source
class FileTransferException extends Exception {
  public $arguments;
  function __construct($message, $code = 0, $arguments = array()) {
    parent::__construct($message, (int) $code);
    $this->arguments = $arguments;
  }

}

Members

Title Sort descending Modifiers Object type Summary
FileTransferException::$arguments public property
FileTransferException::__construct function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.