MediaWiki master
ProcOpenError.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Exception;
22
23use Exception;
24
28class ProcOpenError extends Exception {
32 public function __construct() {
33 parent::__construct( 'proc_open() returned error!' );
34 }
35}
36
38class_alias( ProcOpenError::class, 'MediaWiki\\ProcOpenError' );