MediaWiki master
SuiteGenerationException.php
Go to the documentation of this file.
1<?php
2
3declare( strict_types = 1 );
4
6
10class SuiteGenerationException extends \Exception {
11
12 public function __construct( int $groupId ) {
13 parent::__construct( "Unable to find suite split_group_" . $groupId );
14 }
15
16}