MediaWiki REL1_34
NameTableAccessException.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Storage;
24
25use RuntimeException;
26
32class NameTableAccessException extends RuntimeException {
33
40 public static function newFromDetails( $tableName, $accessType, $accessValue ) {
41 $message = "Failed to access name from ${tableName} using ${accessType} = ${accessValue}";
42 return new self( $message );
43 }
44
45}
Exception representing a failure to look up a row from a name table.
static newFromDetails( $tableName, $accessType, $accessValue)