summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/SQLStore/Exception/TableMissingIdFieldException.php
blob: 9c7cf1aa5238b1579e8e1326de2259937299f026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace SMW\SQLStore\Exception;

use RuntimeException;

/**
 * @license GNU GPL v2+
 * @since 3.0
 *
 * @author mwjames
 */
class TableMissingIdFieldException extends RuntimeException {

	/**
	 * @since 3.0
	 */
	public function __construct( $name ) {
		parent::__construct( "Operation is not supported for a table ({$name}) without subject IDs." );
	}

}