public function ExceptionCollection::setExceptions

Set all of the exceptions

Parameters

array $exceptions Array of exceptions:

Return value

self

File

drupal/core/vendor/guzzle/common/Guzzle/Common/Exception/ExceptionCollection.php, line 22

Class

ExceptionCollection
Collection of exceptions

Namespace

Guzzle\Common\Exception

Code

public function setExceptions(array $exceptions) {
  $this->exceptions = $exceptions;
  return $this;
}