MediaWiki REL1_34
ShellDisabledError.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki;
22
23use Exception;
24
28class ShellDisabledError extends Exception {
29 public function __construct() {
30 parent::__construct( 'Unable to run external programs, proc_open() is disabled' );
31 }
32}
A helper class for throttling authentication attempts.