MediaWiki master
TestListMissingException.php
Go to the documentation of this file.
1<?php
2
3declare( strict_types = 1 );
4
6
10class TestListMissingException extends \Exception {
11
12 public function __construct( string $testListFile ) {
13 parent::__construct( "Could not find test list at " . $testListFile );
14 }
15
16}