1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ExternalError.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Chat\ExternalChat;
4
5use Bitrix\Im\V2\Error;
6use Bitrix\Main\Localization\Loc;
7
8class ExternalError extends Error
9{
10 public const FROM_EVENT = 'ERROR_FROM_EVENT';
11
12 protected function loadErrorMessage($code, $replacements): string
13 {
14 return Loc::getMessage("ERROR_EXTERNAL_{$code}", $replacements) ?: '';
15 }
16
17 protected function loadErrorDescription($code, $replacements): string
18 {
19 return Loc::getMessage("ERROR_EXTERNAL_{$code}_DESC", $replacements) ?: '';
20 }
21}
loadErrorMessage($code, $replacements)
Определения ExternalError.php:12
loadErrorDescription($code, $replacements)
Определения ExternalError.php:17
Определения error.php:15
$code
Определения error.php:17