MediaWiki master
DBLanguageError.php
Go to the documentation of this file.
1<?php
6namespace Wikimedia\Rdbms;
7
8use Throwable;
9
16 public function __construct( string $error, ?Throwable $prev = null ) {
17 parent::__construct( null, $error, $prev );
18 }
19}
__construct(string $error, ?Throwable $prev=null)