mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
16 lines
420 B
PHP
16 lines
420 B
PHP
<?php
|
|
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
class DictExceptionMissingString extends DictException
|
|
{
|
|
public function __construct($sLanguageCode, $sStringCode)
|
|
{
|
|
$aContext = array();
|
|
$aContext['language_code'] = $sLanguageCode;
|
|
$aContext['string_code'] = $sStringCode;
|
|
parent::__construct('Missing localized string', $aContext);
|
|
}
|
|
} |