public function VendorDirectoryNotFoundException::__construct in Vendor Stream Wrapper 8
File
- src/
Exception/ VendorDirectoryNotFoundException.php, line 19
Class
- VendorDirectoryNotFoundException
- Exception thrown when the vendor directory cannot be retrieved.
Namespace
Drupal\vendor_stream_wrapper\ExceptionCode
public function __construct($message = "", int $code = 0, Throwable $previous = NULL) {
$message = $this
->t('The vendor directory could not be found, and needs to be added to settings.php') . PHP_EOL . $message;
parent::__construct($message, $code, $previous);
}