You are here

function FileTransferException::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/FileTransfer/FileTransferException.php \Drupal\Core\FileTransfer\FileTransferException::__construct()

Constructs a FileTransferException object.

Parameters

string $message: Exception message.

int $code: Exception code.

array $arguments: Arguments to be used in this exception.

File

core/lib/Drupal/Core/FileTransfer/FileTransferException.php, line 32
Contains \Drupal\Core\FileTransfer\FileTransferException.

Class

FileTransferException
FileTransferException class.

Namespace

Drupal\Core\FileTransfer

Code

function __construct($message, $code = 0, $arguments = array()) {
  parent::__construct($message, $code);
  $this->arguments = $arguments;
}