MediaWiki master
NameTableAccessException.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Storage;
8
9use RuntimeException;
10
17class NameTableAccessException extends RuntimeException {
18
25 public static function newFromDetails( $tableName, $accessType, $accessValue ) {
26 $message = "Failed to access name from {$tableName} using {$accessType} = {$accessValue}";
27 return new self( $message );
28 }
29
30}
Exception representing a failure to look up a row from a name table.
static newFromDetails( $tableName, $accessType, $accessValue)