MediaWiki master
InvalidSplitGroupCountException.php
Go to the documentation of this file.
1<?php
2
4
5use Exception;
6
10class InvalidSplitGroupCountException extends Exception {
11 public function __construct( $splitGroupCount ) {
12 parent::__construct(
13 "Invalid split group count (must be an integer > 2): " . $splitGroupCount
14 );
15 }
16
17}