FileTransferException::__construct

FileTransferException::__construct($message, $code = 0, $arguments = array())

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 27

Class

FileTransferException
FileTransferException class.

Namespace

Drupal\Core\FileTransfer

Code

function __construct($message, $code = 0, $arguments = array()) {
  parent::__construct($message, $code);
  $this->arguments = $arguments;
}
doc_Drupal
2016-10-29 09:14:02
Comments
Leave a Comment

Please login to continue.