MediaWiki  1.34.0
ServiceDisabledException.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Wikimedia\Services;
4 
5 use Exception;
6 use Psr\Container\ContainerExceptionInterface;
7 use RuntimeException;
8 
35 class 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 
52 class_alias( ServiceDisabledException::class, 'MediaWiki\Services\ServiceDisabledException' );
Wikimedia\Services\ServiceDisabledException
Exception thrown when trying to access a disabled service.
Definition: ServiceDisabledException.php:35
Wikimedia\Services\ServiceDisabledException\__construct
__construct( $serviceName, Exception $previous=null)
Definition: ServiceDisabledException.php:42
Wikimedia\Services
Definition: CannotReplaceActiveServiceException.php:3