MediaWiki master
MaintenanceFatalError.php
Go to the documentation of this file.
1<?php
2
4
5use Exception;
6
13class MaintenanceFatalError extends Exception {
18 public function __construct( $code ) {
19 parent::__construct( "", $code );
20 }
21}
Exception thrown by Maintenance::fatalError if called during PHPUnit tests.