MediaWiki master
PhpUnitErrorTestCaseFoundException.php
Go to the documentation of this file.
1<?php
2
3declare( strict_types = 1 );
4
6
10class PhpUnitErrorTestCaseFoundException extends \Exception {
11
12 public function __construct() {
13 parent::__construct( "Encountered PHPUnit ErrorTestCase - check for a syntax error in the test " .
14 "suite or an error in a dataProvider!" );
15 }
16
17}