MediaWiki REL1_31
ThrottledError.php
Go to the documentation of this file.
1<?php
28 public function __construct() {
29 parent::__construct(
30 'actionthrottled',
31 'actionthrottledtext'
32 );
33 }
34
35 public function report() {
36 global $wgOut;
37 $wgOut->setStatusCode( 429 );
38 parent::report();
39 }
40}
$wgOut
Definition Setup.php:912
An error page which can definitely be safely rendered using the OutputPage.
Show an error when the user hits a rate limit.
report()
Output a report about the exception and takes care of formatting.