MediaWiki master
UploadChunkVerificationException.php
Go to the documentation of this file.
1<?php
23
27class UploadChunkVerificationException extends RuntimeException {
29 public $msg;
30
35 public function __construct( array $res ) {
36 $this->msg = wfMessage( ...$res );
37 parent::__construct( wfMessage( ...$res )
38 ->inLanguage( 'en' )->useDatabase( false )->text() );
39 }
40}
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:150