MediaWiki master
PhpUnitResultsCachingException.php
Go to the documentation of this file.
1<?php
2
3declare( strict_types = 1 );
4
6
10class PhpUnitResultsCachingException extends \RuntimeException {
11
12 public function __construct( string $message ) {
13 parent::__construct( "Error processing PHPUnit results cache: " . $message );
14 }
15
16}