mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
17 lines
367 B
PHP
17 lines
367 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
class DictExceptionUnknownLanguage extends DictException
|
|
{
|
|
public function __construct($sLanguageCode)
|
|
{
|
|
$aContext = [];
|
|
$aContext['language_code'] = $sLanguageCode;
|
|
parent::__construct('Unknown localization language', $aContext);
|
|
}
|
|
}
|