Translate extension for MediaWiki
 
Loading...
Searching...
No Matches
UserNotSandboxedException.php
1<?php
2declare( strict_types = 1 );
3
4namespace MediaWiki\Extension\Translate\TranslatorSandbox;
5
6use Exception;
7
8class UserNotSandboxedException extends Exception {
9 public function __construct() {
10 parent::__construct( 'User is not sandboxed' );
11 }
12}