Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CompositeException.php

function CompositeException::__construct

Parameters

\Throwable[] $throwables :

File

vendor/react/promise/src/Exception/CompositeException.php, line 18

Class

CompositeException
Represents an exception that is a composite of one or more other exceptions.

Namespace

React\Promise\Exception

Code

public function __construct(array $throwables, string $message = '', int $code = 0, ?\Throwable $previous = null) {
    parent::__construct($message, $code, $previous);
    $this->throwables = $throwables;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal