MediaWiki
REL1_35
MetadataMergeException.php
Go to the documentation of this file.
1
<?php
24
namespace
MediaWiki\Session
;
25
26
use Exception;
27
use UnexpectedValueException;
28
36
class
MetadataMergeException
extends
UnexpectedValueException {
38
protected
$context
;
39
46
public
function
__construct
(
47
$message =
''
,
48
$code = 0,
49
Exception $previous =
null
,
50
array
$context
= []
51
) {
52
parent::__construct( $message, $code, $previous );
53
$this->context =
$context
;
54
}
55
60
public
function
getContext
() {
61
return
$this->context
;
62
}
63
68
public
function
setContext
( array
$context
) {
69
$this->context =
$context
;
70
}
71
}
MediaWiki\Session\MetadataMergeException
Subclass of UnexpectedValueException that can be annotated with additional data for debug logging.
Definition
MetadataMergeException.php:36
MediaWiki\Session\MetadataMergeException\$context
array $context
Definition
MetadataMergeException.php:38
MediaWiki\Session\MetadataMergeException\setContext
setContext(array $context)
Set context data.
Definition
MetadataMergeException.php:68
MediaWiki\Session\MetadataMergeException\__construct
__construct( $message='', $code=0, Exception $previous=null, array $context=[])
Definition
MetadataMergeException.php:46
MediaWiki\Session\MetadataMergeException\getContext
getContext()
Get context data.
Definition
MetadataMergeException.php:60
MediaWiki\Session
Definition
BotPasswordSessionProvider.php:24
includes
session
MetadataMergeException.php
Generated on Sat Apr 6 2024 00:07:49 for MediaWiki by
1.9.8