Merge "Improve return types in class MagicWordArray"
[lhc/web/wiklou.git] / includes / libs / services / ContainerDisabledException.php
1 <?php
2
3 namespace Wikimedia\Services;
4
5 use Exception;
6 use RuntimeException;
7
8 /**
9 * Exception thrown when trying to access a service on a disabled container or factory.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 *
26 * @file
27 *
28 * @since 1.27
29 */
30
31 /**
32 * Exception thrown when trying to access a service on a disabled container or factory.
33 */
34 class ContainerDisabledException extends RuntimeException {
35
36 /**
37 * @param Exception|null $previous
38 */
39 public function __construct( Exception $previous = null ) {
40 parent::__construct( 'Container disabled!', 0, $previous );
41 }
42
43 }
44
45 /**
46 * Retain the old class name for backwards compatibility.
47 * @deprecated since 1.33
48 */
49 class_alias( ContainerDisabledException::class, 'MediaWiki\Services\ContainerDisabledException' );