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