MediaWiki master
UploadChunkVerificationException.php
Go to the documentation of this file.
1<?php
25class UploadChunkVerificationException extends RuntimeException {
26 public $msg;
27
32 public function __construct( array $res ) {
33 $this->msg = wfMessage( ...$res );
34 parent::__construct( wfMessage( ...$res )
35 ->inLanguage( 'en' )->useDatabase( false )->text() );
36 }
37}
wfMessage( $key,... $params)
This is the function for getting translated interface messages.