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