MediaWiki master
UploadChunkVerificationException.php
Go to the documentation of this file.
1<?php
9
11use RuntimeException;
12
16class UploadChunkVerificationException extends RuntimeException {
18 public $msg;
19
25 public function __construct( array $res ) {
26 $this->msg = wfMessage( ...$res );
27 parent::__construct(
28 wfMessage( ...$res )->inLanguage( 'en' )->useDatabase( false )->text()
29 );
30 }
31}
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
The Message class deals with fetching and processing of interface message into a variety of formats.
Definition Message.php:144