MediaWiki
master
UploadChunkFileException.php
Go to the documentation of this file.
1
<?php
22
use Wikimedia\NormalizedException\INormalizedException;
23
use Wikimedia\NormalizedException\NormalizedExceptionTrait;
24
28
class
UploadChunkFileException
extends
RuntimeException implements INormalizedException {
29
use NormalizedExceptionTrait;
30
31
public
function
__construct
( $message, array $context = [] ) {
32
$this->normalizedMessage = $message;
33
$this->messageContext = $context;
34
35
parent::__construct(
36
$this->getMessageFromNormalizedMessage( $this->normalizedMessage, $this->messageContext )
37
);
38
}
39
}
UploadChunkFileException
Definition
UploadChunkFileException.php:28
UploadChunkFileException\__construct
__construct( $message, array $context=[])
Definition
UploadChunkFileException.php:31
includes
upload
exception
UploadChunkFileException.php
Generated on Sat Sep 21 2024 02:25:50 for MediaWiki by
1.10.0