MediaWiki REL1_37
DBAccessError.php
Go to the documentation of this file.
1<?php
22namespace Wikimedia\Rdbms;
23
33 public function __construct() {
34 parent::__construct( null, "Database access has been disabled." );
35 }
36}
37
41class_alias( DBAccessError::class, 'DBAccessError' );
Exception class for attempted DB access @newable.