MediaWiki master
ShellDisabledError.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Exception;
22
23use Exception;
24
29class ShellDisabledError extends Exception {
30
34 public function __construct() {
35 parent::__construct( 'Unable to run external programs, proc_open() is disabled' );
36 }
37}
38
40class_alias( ShellDisabledError::class, 'MediaWiki\\ShellDisabledError' );