MediaWiki master
ProcOpenError.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Exception;
8
9use Exception;
10
14class ProcOpenError extends Exception {
18 public function __construct() {
19 parent::__construct( 'proc_open() returned error!' );
20 }
21}
22
24class_alias( ProcOpenError::class, 'MediaWiki\\ProcOpenError' );