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

Breadcrumb

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

function Throwable::__construct

@psalm-param class-string $className

File

vendor/phpunit/phpunit/src/Event/Value/Throwable.php, line 34

Class

Throwable
@psalm-immutable

Namespace

PHPUnit\Event\Code

Code

public function __construct(string $className, string $message, string $description, string $stackTrace, ?self $previous) {
    $this->className = $className;
    $this->message = $message;
    $this->description = $description;
    $this->stackTrace = $stackTrace;
    $this->previous = $previous;
}
RSS feed
Powered by Drupal