MediaWiki REL1_34
ServiceDisabledException.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\Services;
4
5use Exception;
6use Psr\Container\ContainerExceptionInterface;
7use RuntimeException;
8
35class ServiceDisabledException extends RuntimeException
36 implements ContainerExceptionInterface {
37
42 public function __construct( $serviceName, Exception $previous = null ) {
43 parent::__construct( "Service disabled: $serviceName", 0, $previous );
44 }
45
46}
47
52class_alias( ServiceDisabledException::class, 'MediaWiki\Services\ServiceDisabledException' );
Exception thrown when trying to access a disabled service.
__construct( $serviceName, Exception $previous=null)