MediaWiki REL1_31
ContainerDisabledException.php
Go to the documentation of this file.
1<?php
2namespace MediaWiki\Services;
3
4use Exception;
5use RuntimeException;
6
33class ContainerDisabledException extends RuntimeException {
34
38 public function __construct( Exception $previous = null ) {
39 parent::__construct( 'Container disabled!', 0, $previous );
40 }
41
42}
Exception thrown when trying to access a service on a disabled container or factory.