MediaWiki  master
ProcOpenError.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki;
22 
23 use Exception;
24 
28 class ProcOpenError extends Exception {
32  public function __construct() {
33  parent::__construct( 'proc_open() returned error!' );
34  }
35 }
The MediaWiki class is the helper class for the index.php entry point.
Definition: MediaWiki.php:50