MediaWiki master
DBConnectionError.php
Go to the documentation of this file.
1<?php
6namespace Wikimedia\Rdbms;
7
18 public function __construct( ?IDatabase $db = null, $error = 'unknown error' ) {
19 $msg = 'Cannot access the database';
20 if ( trim( $error ) != '' ) {
21 $msg .= ": $error";
22 }
23
24 parent::__construct( $db, $msg );
25 }
26}
__construct(?IDatabase $db=null, $error='unknown error')
IDatabase null $db
Definition DBError.php:24
Base class for the more common types of database errors.
Interface to a relational database.
Definition IDatabase.php:31