MediaWiki master
ShellDisabledError.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Exception;
8
9use Exception;
10
15class ShellDisabledError extends Exception {
16
20 public function __construct() {
21 parent::__construct( 'Unable to run external programs, proc_open() is disabled' );
22 }
23}
24
26class_alias( ShellDisabledError::class, 'MediaWiki\\ShellDisabledError' );